[Haskell-beginners] How would you improve this program?

Brent Yorgey byorgey at seas.upenn.edu
Tue Oct 11 17:28:49 CEST 2011


On Tue, Oct 11, 2011 at 02:04:23PM +0300, Ovidiu Deac wrote:

>     join "\n" result -- from Data.List.Utils

By the way, 'join "\n" result' is better written 'unlines result' (and
'join' is better written 'intercalate'). (Otherwise I completely agree
with your email.)

-Brent



More information about the Beginners mailing list