Skip to content

Commit

Permalink
add floor division to grammar (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdotink authored Jul 10, 2024
1 parent 31dd6c5 commit f58ee50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _pages/grammar.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ fieldlist = field {fieldsep field} [fieldsep]
field = '[' exp ']' '=' exp | NAME '=' exp | exp
fieldsep = ',' | ';'
compoundop :: '+=' | '-=' | '*=' | '/=' | '%=' | '^=' | '..='
binop = '+' | '-' | '*' | '/' | '^' | '%' | '..' | '<' | '<=' | '>' | '>=' | '==' | '~=' | 'and' | 'or'
compoundop :: '+=' | '-=' | '*=' | '/=' | '//=' | '%=' | '^=' | '..='
binop = '+' | '-' | '*' | '/' | '//' | '^' | '%' | '..' | '<' | '<=' | '>' | '>=' | '==' | '~=' | 'and' | 'or'
unop = '-' | 'not' | '#'
SimpleType =
Expand Down

0 comments on commit f58ee50

Please sign in to comment.