Skip to content

Instantly share code, notes, and snippets.

@disnet
Created December 5, 2011 19:36
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 disnet/1434937 to your computer and use it in GitHub Desktop.
Save disnet/1434937 to your computer and use it in GitHub Desktop.
let in coffeescript
lets = (vals, fn) -> fn.apply @, vals
lets [1, [2, 3]], (a, [b, c]) ->
a is 1
b is 2
c is 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment