Skip to content

Instantly share code, notes, and snippets.

@superbobry
Created July 25, 2011 12:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save superbobry/1104021 to your computer and use it in GitHub Desktop.
Save superbobry/1104021 to your computer and use it in GitHub Desktop.
CoffeeScript awesomeness!
coffee> f = ([x, y]) -> x + y
[Function]
coffee> f([1, 2])
3
coffee> f = ({x, y}) -> x + y
[Function]
coffee> f({x: 1, y: 2})
3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment