2009/05/19 David Leimbach <[email protected]>: > ...I'm concerned that relying on a pure function like > "unlines . lines" to sequence IO is a bit too implicit in nature.
You aren't relying on `unlines . lines` to do the sequencing; you're relying on them to process a string. That the characters of the string come in order has everything to do with `getContents`, which is trustworthy. -- Jason Dusek _______________________________________________ Haskell-Cafe mailing list [email protected] http://www.haskell.org/mailman/listinfo/haskell-cafe
