Skip to content

Instantly share code, notes, and snippets.

@shomah4a
Created November 19, 2011 06:56
Show Gist options
  • Save shomah4a/1378570 to your computer and use it in GitHub Desktop.
Save shomah4a/1378570 to your computer and use it in GitHub Desktop.
なんかこんなんで S 式パースできた
IGNORE: " ";
INTEGER: "0|[1-9][0-9]*";
FLOAT: "(0|[1-9][0-9]*)\.[0-9]*";
SYMBOL: "[a-zA-Z_-][a-zA-Z0-9_-]*";
STRING: "\"[^\\"]*\"";
sexpr: SYMBOL | INTEGER | FLOAT | STRING | list;
list: "(" sexpr* ("." sexpr)? ")";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment