7 lines
88 B
Plaintext
7 lines
88 B
Plaintext
lexer grammar t007lexer;
|
|
options {
|
|
language = Python3;
|
|
}
|
|
|
|
FOO: 'f' ('o' | 'a' 'b'+)*;
|