diff options
author | Chimrod <> | 2023-11-03 15:16:21 +0100 |
---|---|---|
committer | Chimrod <> | 2023-11-03 15:16:21 +0100 |
commit | f5d06b0e8e6aaaa05100165bfc7873d2a8be859c (patch) | |
tree | 94a129a9fda6672abc6281cb7bb8f31b6eece433 /lib/qparser/tokens.mly | |
parent | 180529c30282d39f3506633716e3fe439db03309 (diff) |
Added the /= operator
Diffstat (limited to 'lib/qparser/tokens.mly')
-rw-r--r-- | lib/qparser/tokens.mly | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/qparser/tokens.mly b/lib/qparser/tokens.mly index 6612351..ddbc4cf 100644 --- a/lib/qparser/tokens.mly +++ b/lib/qparser/tokens.mly @@ -4,7 +4,7 @@ %token PLUS %token MINUS %token INCR DECR -%token MULT_EQUAL +%token MULT_EQUAL DIV_EQUAL %token STAR %token DIV %token MOD |