mirror of
https://gitee.com/BDWare/genparser
synced 2025-04-27 06:22:17 +00:00
4 lines
68 B
ANTLR
4 lines
68 B
ANTLR
grammar hello;
|
|
r : 'hello' ID ;
|
|
ID: [a-z]+ ;
|
|
WS: [ \t\r\n]+ -> skip; |