Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
NahFam13
/
webbyuu
like
1
Build error
App
Files
Files
Community
main
webbyuu
/
grammars
/
simple_arithmetic.gbnf
NahFam13
z2
76a12b2
verified
11 months 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