Is there a possible way to rewrite this in a single line through the use of Monads?
input <- getLine
let parsed = reads input :: [(Int,String)]
I could not understand how I can pass input, my attemp would be thinking about lambda notation.
|
Is there a possible way to rewrite this in a single line through the use of Monads?
I could not understand how I can pass input, my attemp would be thinking about lambda notation. |
|||
|
|
|
Another place for
or with
The compiler might well be able to deduce you mean
Actually, if you're interested in clean ways of writing one-liners, then you should find out more about Applicative Functors. |
||||
|
|
|
Sure, you can use
But I would argue that that rarely increases readability. |
|||||||||
|