mirror of
https://github.com/oobabooga/textgen.git
synced 2026-08-02 00:00:42 -05:00
8 lines
160 B
Plaintext
8 lines
160 B
Plaintext
root ::= (expr "=" ws term "\n")+
|
|
expr ::= term ([-+*/] term)*
|
|
term ::= num | "(" ws expr ")" ws
|
|
num ::= [0-9]+ ws
|
|
ws ::= [ \t\n]*
|
|
# this is a comment
|
|
|