Skip to content

Instantly share code, notes, and snippets.

@vladimir-vg
Created March 29, 2011 20:13
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 vladimir-vg/893142 to your computer and use it in GitHub Desktop.
Save vladimir-vg/893142 to your computer and use it in GitHub Desktop.
related to question in ragel-users mailing-list.
%%{
machine lisp;
integer = '-'? . ('0'|[1-9][0-9]*);
string = '"' . (any - '"') . '"';
list = '(' . (integer|string|list)* . ')';
main := list;
}%%
%% write data;
%% write init;
%% write exec;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment