
16 Dec
2013
16 Dec
'13
9:09 a.m.
On Mon, 16 Dec 2013, Andreas Abel wrote:
On 14.12.2013 12:54, Simon Hengel wrote:
main :: IO () main = getContents >>= either die run . parseInput
Funny way to write a pipeline. Its neither left-to-right, which would be
getContents >>= (parseInput >>> either die run)
nor right-to-left:
either die run . parseInput =<< getContents
A case for hlint.