Skip to content

Instantly share code, notes, and snippets.

@vito
Created October 24, 2010 19:24
Show Gist options
  • Save vito/643868 to your computer and use it in GitHub Desktop.
Save vito/643868 to your computer and use it in GitHub Desktop.
(un)quote
> `(x = { a = ~(2 + 2); a . [1 + ~(42 / 5)] })
<expression x = { a = 4; a . [1 + 8] }>
> `(x = { a = ~(2 + 2); a . [1 + ~(42 / 5)] }) evaluate
{ a = 4; a . [1 + 8] }
> x call
[4, 9]
>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment