7 lines
82 B
Plaintext
7 lines
82 B
Plaintext
lexer grammar t006lexer;
|
|
options {
|
|
language = Python;
|
|
}
|
|
|
|
FOO: 'f' ('o' | 'a')*;
|