Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Applesam4
/
NETO_AI
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
NETO_AI
/
grammars
/
simple_arithmetic.gbnf
Applesam4
Upload 299 files
321be7f
verified
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
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