blob: f98251cfa223f5a9f89ab653e7c77593c8f53b83 [file] [log] [blame]
lexer grammar t048rewrite2;
options {
language=Python;
}
ID : 'a'..'z'+;
INT : '0'..'9'+;
SEMI : ';';
PLUS : '+';
MUL : '*';
ASSIGN : '=';
WS : ' '+;