antlr/tool/playground/T.g

6 lines
89 B
Plaintext

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