for in syntax

This commit is contained in:
nub31
2025-10-22 18:32:45 +02:00
parent 0f96e83e44
commit fd1f4a0130
8 changed files with 172 additions and 25 deletions

View File

@@ -10,6 +10,8 @@ public sealed class Tokenizer
["if"] = Symbol.If,
["else"] = Symbol.Else,
["while"] = Symbol.While,
["for"] = Symbol.For,
["in"] = Symbol.In,
["break"] = Symbol.Break,
["continue"] = Symbol.Continue,
["return"] = Symbol.Return,