6 lines
74 B
Text
6 lines
74 B
Text
lexer grammar t004lexer;
|
|
options {
|
|
language = Python;
|
|
}
|
|
|
|
FOO: 'f' 'o'*;
|