Skip to content

Instantly share code, notes, and snippets.

@kakkun61
Created December 22, 2011 07:36
Show Gist options
  • Save kakkun61/1509389 to your computer and use it in GitHub Desktop.
Save kakkun61/1509389 to your computer and use it in GitHub Desktop.
Java Advent Calendar 2011 code 3
PARSER_BEGIN (Parser)
public class Parser {
}
PARSER_END (Parser)
SKIP: {
" "
}
TOKEN: {
<HELLO: "Hello World.">
| <NL: "\r\n" | "\n" | "\r">
}
void List(): {
} {
<HELLO> <NL>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment