I don't think that

aName =
 [ x
 , y
 , z
 ]

can be beat for adaptability (i.e. adding/removing/reorganizing
results or _especially_ renaming the declaration). Doesn't do so hot
regarding vertical space though...

On 3/28/07, Greg Buchholz <[EMAIL PROTECTED]> wrote:
David House wrote:
> I see this a lot. My personal preference is:
>
> mylist =
>  [ foo, bar, baz,
>    qux, quux, foo,
>    bar, baz, qux ]

 Or,

   mylist = [foo, bar , baz,
             qux, quux, foo,
             bar, baz , qux]

_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to