Skip to content

Instantly share code, notes, and snippets.

@junosuarez
Last active August 29, 2015 14:11
Show Gist options
  • Save junosuarez/9e7644485abc971a11f4 to your computer and use it in GitHub Desktop.
Save junosuarez/9e7644485abc971a11f4 to your computer and use it in GitHub Desktop.
myDecorator1("param",
myDecorator2(["param","foo"],
function doSomeStuff () {
console.log('o hai')
}
))
// C# style
[myDecorator1 "param"]
[myDecorator2 ["param","foo"]]
function doSomeStuff () {
console.log('o hai')
}
@kid-icarus
Copy link

o hai

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment