
On Thu, 27 Mar 2014 23:06:02 +0100, Henk-Jan van Tuyl
On Thu, 27 Mar 2014 16:50:28 +0100, bruce li
wrote: 2. How to write cooler code like lift2 ((++) =<<) preillion postillion? How could I make such usage a habit?
I think it is better to not make this a habit; such coding is both hard to write and read. IMHO a better way to write this, is using a list comprehension: [x ++ y | x <- preillion, y <- postillion]
Studying a bit better on the example, I see that I misinterpreted it; this show how hard it is to read. Regards, Henk-Jan van Tuyl -- Folding@home What if you could share your unused computer power to help find a cure? In just 5 minutes you can join the world's biggest networked computer and get us closer sooner. Watch the video. http://folding.stanford.edu/ http://Van.Tuyl.eu/ http://members.chello.nl/hjgtuyl/tourdemonad.html Haskell programming --