Skip to content

Instantly share code, notes, and snippets.

@mathias
Created November 30, 2014 03:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mathias/9688116052475738067f to your computer and use it in GitHub Desktop.
Save mathias/9688116052475738067f to your computer and use it in GitHub Desktop.
lispy> def {x} 100
()
lispy> x
100
lispy> def {a b} 5 6
()
lispy> a
5
lispy> b
6
lispy> def {arglist} {a b x y}
()
lispy> arglist
{a b x y}
lispy> def arglist 1 2 3 4
()
lispy> list a b x y
{1 2 3 4}
lispy>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment