Why this code doesn't work ? I would like to return Bool if string is a number.
isNumber = do
n <- getLine
let val = case reads n of
((v,_):_) -> True
_ -> False
|
|
Firstly, you have a syntax error:
Because your function doesn't return a value yet. Fixing that:
Now it is syntactically correct, but it has a type error:
Why? Because
Still, its not really idiomatic. Let's separate the IO from the pure code, and actually return the parsed number, if it succeeds:
Testing:
So we've cleaned up the parsing, and separted IO from parsing, meaning you can test your parser in isolation, and added type information to document your design. |
|||||||||||||||
|
|
Add It is also a good idea to write a separate pure function of type |
|||
|
|