Skip to content

Instantly share code, notes, and snippets.

@cgrand
Created September 7, 2009 12:58
Show Gist options
  • Save cgrand/182348 to your computer and use it in GitHub Desktop.
Save cgrand/182348 to your computer and use it in GitHub Desktop.
(grammar
[number [#{"0" "1" "2"}+]
expr #{number ["(" sum ")"]}
sum [prod ["+" prod]*]
prod [expr ["*" expr]*])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment