Skip to content

Instantly share code, notes, and snippets.

@munro
Created November 25, 2011 21:39
Show Gist options
  • Save munro/1394473 to your computer and use it in GitHub Desktop.
Save munro/1394473 to your computer and use it in GitHub Desktop.
Wtf CoffeeScript
fnMaker = (name) => (args...) => [name, args]
what = fnMaker 'what'
the = fnMaker 'the'
fuck = 'fuck'
_is = fnMaker 'is'
going = fnMaker 'going'
to = 'to'
happen = 'happen'
wtf = what the fuck, _is going to, happen
alert JSON.stringify wtf # ["what",[["the",["fuck",["is",[["going",["to","happen"]]]]]]]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment