I want to implement a function that asks different questions in base of sex. However I fail in giving it the right Type.
askDifferentQuestion :: String -> IO String
askDifferentQuestion sex = do
putStrLn "ciao"
main = do
sex <- getLine
askDifferentQuestion sex
If I execute I get
test.hs:3:3:
Couldn't match expected type `String' with actual type `()'
Expected type: IO String
Actual type: IO ()
In the return type of a call of `putStrLn'
In a stmt of a 'do' block: putStrLn "ciao"
Failed, modules loaded: none.
Why am I doing it wrong?
askDifferentQuestionand then use the:tcommand to ask ghci what was the type that it inferred automatically. – missingno Jan 8 at 19:12