Skip to content

Instantly share code, notes, and snippets.

@dyoo
Created January 15, 2013 20:51
Show Gist options
  • Select an option

  • Save dyoo/4541938 to your computer and use it in GitHub Desktop.

Select an option

Save dyoo/4541938 to your computer and use it in GitHub Desktop.
#lang racket
(module test-parsing ragg/codegen/sexp-based-lang
(rules
;; ones ::= ["1" ones]
(rule ones (maybe (seq (lit "1") (id ones))))))
(require (submod "." test-parsing))
(parse (list "1" "1" "1"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment