Fixed issue: #108

This commit is contained in:
UnlegitDqrk
2026-03-01 19:57:26 +01:00
parent 4c2add3832
commit 01a8bd944e
20 changed files with 120 additions and 40 deletions

View File

@@ -509,6 +509,7 @@ int Binop():
| "-" { return Lua.OP_SUB; }
| "*" { return Lua.OP_MUL; }
| "/" { return Lua.OP_DIV; }
| "//" { return Lua.OP_IDIV; }
| "^" { return Lua.OP_POW; }
| "%" { return Lua.OP_MOD; }
| ".." { return Lua.OP_CONCAT; }