Skip to content

Instantly share code, notes, and snippets.

@joekarma
Created October 27, 2012 21:19
Show Gist options
  • Save joekarma/3966318 to your computer and use it in GitHub Desktop.
Save joekarma/3966318 to your computer and use it in GitHub Desktop.
parenscript example
(ps:ps
(let ((hash (ps:create :foo "bar"
:baz "foo")))
(ps:@ hash :foo)))
;; =>
"(function () {
var hash = { 'foo' : 'bar', 'baz' : 'foo' };
return hash['foo'];
})();"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment