test3 / text-generation-webui-main /grammars /simple_arithmetic.gbnf
Mr-Bhaskar's picture
Upload 399 files
20efbc0 verified
raw
history blame contribute delete
No virus
160 Bytes
root ::= (expr "=" ws term "\n")+
expr ::= term ([-+*/] term)*
term ::= num | "(" ws expr ")" ws
num ::= [0-9]+ ws
ws ::= [ \t\n]*
# this is a comment