antlr/tool/playground/T.g

5 lines
65 B
Plaintext

grammar T;
s : ID ;
ID : 'a'..'z'+ ;
WS : (' '|'\n') {skip();} ;