Update grammar.md

This commit is contained in:
Gulg 2023-01-22 12:49:57 +05:00 committed by GitHub
parent 4a2e8013c7
commit 2aa33f61ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,7 +53,7 @@ fieldlist = field {fieldsep field} [fieldsep]
field = '[' exp ']' '=' exp | NAME '=' exp | exp field = '[' exp ']' '=' exp | NAME '=' exp | exp
fieldsep = ',' | ';' fieldsep = ',' | ';'
compoundop :: '+=' | '-=' | '*=' | '/=' | '%=' | '^=' | '..=' compoundop = '+=' | '-=' | '*=' | '/=' | '%=' | '^=' | '..='
binop = '+' | '-' | '*' | '/' | '^' | '%' | '..' | '<' | '<=' | '>' | '>=' | '==' | '~=' | 'and' | 'or' binop = '+' | '-' | '*' | '/' | '^' | '%' | '..' | '<' | '<=' | '>' | '>=' | '==' | '~=' | 'and' | 'or'
unop = '-' | 'not' | '#' unop = '-' | 'not' | '#'