
24 Nov
2008
24 Nov
'08
9:23 a.m.
On Sun, Nov 23, 2008 at 12:10 AM, Steven Ashley
The contents of the do block must be indented at-least as much as mainWith on the previous line.
main = mainWith myFunction ....where mainWith function = do ....................args <- getArgs
This is the reason that I format 'where' clauses like so: main = mainWith myFunction ....where ....mainWith f = do ........args <- getArgs etc. I think one more line of vertical space is worth all of the horizontal space you end up saving. Kurt