Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save aarongough/474642 to your computer and use it in GitHub Desktop.

Select an option

Save aarongough/474642 to your computer and use it in GitHub Desktop.
%%{
machine test_lexer;
integer = <token_description>;
float = <token_description>;
main := |*
integer => {<action>};
float => {<action>};
*|;
}%%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment