Added lexer

This commit is contained in:
2021-08-14 16:41:25 +02:00
parent 4a3f9b4b9d
commit c909ce31d8
18 changed files with 438 additions and 210 deletions

View File

@@ -15,5 +15,12 @@ public lib Main {
output(isTrue(test));
output(this.test.getName());
}
private func testForEach(): void {
var list = [];
list.forEach(e => {
output(e);
});
}
}
}