forked from luna/jorts
remove unused grammar file
since we're moving to lark
This commit is contained in:
parent
fe507437ea
commit
09f230985e
1 changed files with 0 additions and 10 deletions
|
@ -1,10 +0,0 @@
|
|||
digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" ;
|
||||
integer = ['-' | '+'] "0" digit {digit} ;
|
||||
|
||||
hex_letters = "a" | "b" | "c" | "d" | "e" | "f"
|
||||
hex_integer = "0x", {hex_letters | digit} ;
|
||||
|
||||
oct_digits = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" ;
|
||||
octal_integer = "0o", {oct_digits} ;
|
||||
|
||||
program =
|
Loading…
Reference in a new issue