1 elemPos' _ [] = -1 2 elemPos' x ((val,pos):vps) ------ 3 | x == val = pos 4 | otherwise = elemPos' x vps ------ 5 f x y z = (x == chr y) == z ------ 6 add_c x y = x + y 7 add_t(x,y) = x + y ------ 8 fromToman 'I' = 1 9 fromRoman 'V' = 5 10 fromRoman 'X' = 10 ------ 11 p 1 (x:xs) = 10