- Updated markdown
This commit is contained in:
Tristan B. Velloza Kildaire 2023-12-24 00:26:26 +02:00
parent fe7a979618
commit e14037e12a
1 changed files with 7 additions and 4 deletions

View File

@ -23,17 +23,20 @@ These are the basic types of comments supported.
These make are the basic atoms that define literals.
letter ::= "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K"
letter ::= "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K"
| "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V"
| "W" | "X" | "Y" | "Z" | "a" | "b" | "c" | "d" | "e" | "f" | "g"
| "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r"
| "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z";
number ::= ("0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9") [encoder];
encoder ::= "S" | "B" | "W" | "I" | "L" | "UB" | "UW" | "UI" | "UL" | "SB"
digit ::= ("0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9")
number ::= digit {(digit | underscore)} ["." digit {(digit | underscore)}] [encoder]
encoder ::= "S" | "B" | "W" | "I" | "L" | "UB" | "UW" | "UI" | "UL" | "SB"
"SW" | "SI" | "SL";
float ::= (number | {number}), ".", (number | {number});
underscore ::= "_"
### Expressions