antlr/tool/playground/T.g

9 lines
99 B
Plaintext

grammar T;
s : e ';' ;
e : e '*' e
| ID
| INT
;
INT : '0'..'9'+;
WS : (' '|'\n') {skip();} ;