mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-11 21:39:52 +00:00
7 lines
177 B
Plaintext
7 lines
177 B
Plaintext
|
root ::= (expr "=" ws term "\n")+
|
||
|
expr ::= term ([-+*/] term)*
|
||
|
term ::= ident | num | "(" ws expr ")" ws
|
||
|
ident ::= [a-z] [a-z0-9_]* ws
|
||
|
num ::= [0-9]+ ws
|
||
|
ws ::= [ \t\n]*
|