antlr/tool/playground/T.g

9 lines
100 B
Plaintext

grammar T;
s : ID b ;
b : INT ;
ID : [a-zA-Z]+ ;
INT : [0-9]+ ;
WS : [ \t\n\r]+ -> skip ;