Add arrays

This commit is contained in:
nub31
2025-01-30 16:33:06 +01:00
parent 8a50278f0f
commit a4404a4fe2
15 changed files with 545 additions and 34 deletions

View File

@@ -1,9 +1,10 @@
import "core";
func main() {
let i = 1;
while i <= 10 {
println("uwu");
i = i + 1;
}
let x = new Array<String>(2);
x[1] = "test1";
x[2] = "test2";
println(x[1]);
println(x[2]);
}