This website requires JavaScript.
Explore
Help
Sign In
jasder
/
antlr
Watch
1
Star
0
Fork
You've already forked antlr
1
Code
Issues
Pull Requests
Releases
1
Wiki
Activity
c3e5c42c51
antlr
/
tool
/
playground
/
T.g
9 lines
99 B
Plaintext
Raw
Blame
History
grammar T;
s : e ';' ;
e : e '*' e
| ID
| INT
;
INT : '0'..'9'+;
WS : (' '|'\n') {skip();} ;
Reference in New Issue
View Git Blame
Copy Permalink