
21 Aug
2012
21 Aug
'12
9:41 p.m.
On Tue, Aug 21, 2012 at 10:34 PM, koomi
On 21.08.2012 22:43, Brent Yorgey wrote:
Having more than one $, like (f1 $ f2 $ fn $ arg), is frowned upon. Care to explain why this is considered bad? I don't see anything wrong with this.
It's just a matter of taste. Personally, I usually prefer using many ($)s rather than combining (.)s and ($)s on the same "phrase". For example, I prefer foo = finish $ doSomethingOther $ doSomething $ initialArg to foo = finish . doSomethingOther . doSomething $ initialArg It gives me a feel of simmetry. You may even align the $s, either on the left or on the right. But, like I said, it's just a matter of taste =). Cheers, -- Felipe.