I find adding type hints useful for debugging, but I don't know how to do that with the result of using <- on and IO action
action :: IO ()
foo :: String --doesnt't compile
foo <- getLine
|
|
|
You can't do that because <- isn't a declaration. You can either:
Or, with
|
|||
|
|
|
For completeness I would like to add
Which is clunky, but can be useful if you find yourself trapped in the IO monad, which can happen if you're programming a GUI. |
|||
|
|