1lexer grammar t005lexer;
2options {
3  language = Python;
4}
5
6FOO: 'f' 'o'+;
7