This commit is contained in:
Joey Hess 2012-10-28 21:38:41 -04:00
parent e3fc4da64d
commit def5b4cc64

View file

@ -83,3 +83,10 @@ name in a let clause, this is sometimes used:
foo = let x = 42
in x + (x-1) + x
-----
If you feel that this coding style leads to excessive amounts of horizontal
or vertical whitespace around your code, making it hard to fit enough of it
on the screen, consider finding a better abstraction, so the code that
does fit on the screen is easily understandable. ;)