Implemented loop iterators

This commit is contained in:
Eduard Urbach 2025-02-19 17:52:15 +01:00
parent 144810c6c8
commit ac03657307
Signed by: eduard
GPG key ID: 49226B848C78F6C8
17 changed files with 147 additions and 35 deletions

View file

@ -41,6 +41,7 @@ var Operators = [64]Operator{
token.LogicalAnd: {"&&", 2, 2},
token.LogicalOr: {"||", 1, 2},
token.Range: {"..", 0, 2},
token.Separator: {",", 0, 2},
token.Assign: {"=", math.MinInt8, 2},