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