Files
Plasma/tests/test.pla
2025-10-16 17:35:00 +11:00

7 lines
102 B
Plaintext

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