Skip to content

Instantly share code, notes, and snippets.

@anfedorov
Created April 23, 2010 16:02
Show Gist options
  • Save anfedorov/376731 to your computer and use it in GitHub Desktop.
Save anfedorov/376731 to your computer and use it in GitHub Desktop.
macro let(Var v, Equals, Exp e, Block body) {
(function (<v>) {
<body>
})(<e>);
}
macro aif(Exp test, Block body) {
let it = <test> {
<body>
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment