Search Results

0
votes

Haskell string list through lines

Remember that lists are monads in haskell, with the definition: instance Monad [] where m >>= f = concatMap f m return x = [x] fail s = [] So …