I have a problem compiling the following code on GHC 6.12.3 and I don't understand why.
The purpose of function test2 is to return a function that uses an integer to get a string element from a list (the list is created from the first nodes from a pair-list).
The IO bits is needed as test2 is used by another function using IO.
type PairList = [(String, String)]
test1 :: [String] -> Int -> String
test1 list x = list !! x
test2 :: PairList -> IO (Int -> String)
test2 pl = do
f <- [fst x | x <- pl] :: IO [String]
return test1 f
GHC gives me this error:
Test.hs:8:6:
Couln't match expected type 'IO [String]'
against inferred type '[a]'
In a stmt of a 'do' expression:
f <- [fst x | x <- pl] :: IO [String]
In the expression:
do { f <- [fst x | x <- pl] :: IO [String];
return test1 f }
...
IOfunctions can use pure functions, but pure functions cannot useIOfunctions. – Gabriel Gonzalez Nov 14 '12 at 23:48return test1 fdoesn't meanreturn (test1 f), to get that you should write it as such, or usereturn $ test1 f. – dbaupp Nov 15 '12 at 19:50