1lexer grammar t006lexer;
2options {
3  language = Python3;
4}
5
6FOO: 'f' ('o' | 'a')*;
7