Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Verias
/
testing_space
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cb7d794
testing_space
/
grammars
/
simple_arithmetic.gbnf
Verias
Upload 64 files
9ac1a8d
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
Wrap lines
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