Skip to content

Instantly share code, notes, and snippets.

Created July 5, 2016 21:34
Show Gist options
  • Save anonymous/676497c11ce04f6e55304bc14af164bb to your computer and use it in GitHub Desktop.
Save anonymous/676497c11ce04f6e55304bc14af164bb to your computer and use it in GitHub Desktop.
# this
(x y z label: a = 1, b = 2, c = 3)
# produces this
(x y z (label ((a = 1) (b = 2) (c = 3))))
# and this
(x y,z label: a = 1, b = 2, c = 3)
# produces this
((x y) (z (label ((a = 1) (b = 2) (c = 3)))))
# and this
(x: y,z label: a = 1, b = 2, c = 3; q)
# produces this?
(x (y (z (label (a = 1, b = 2, c = 3)))) q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment