7 lines
74 B
Plaintext
7 lines
74 B
Plaintext
lexer grammar t008lexer;
|
|
options {
|
|
language = Python;
|
|
}
|
|
|
|
FOO: 'f' 'a'?;
|