genparser/input/hello.g4
2021-09-24 17:37:28 +08:00

4 lines
68 B
ANTLR

grammar hello;
r : 'hello' ID ;
ID: [a-z]+ ;
WS: [ \t\r\n]+ -> skip;