Hacker News new | ask | show | jobs
by kaoD 3901 days ago
In CoffeeScript I always do (foo bin, bar) when I need the clarity. Found it in a major style guide and I loved it.

E.g. (foo bar) and (hello world)

1 comments

Only two steps away from embracing the dark side:

  (and (foo bar) (hello world))
Or from the other dark side (Haskell):

    foo bar && hello world
and for more than one argument:

    foo bin bar && hello world