Files
Plasma/tests/test.pla
2025-10-16 07:24:40 +11:00

7 lines
100 B
Plaintext

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