Files
Plasma/tests/test.pla
2025-10-19 19:01:14 +11:00

7 lines
96 B
Plaintext

main = Func(): Int {
for (i: Int = 1; i < 100000; i+=1;) {
$print("%i\n",i);
}
return 0;
}