Files
Plasma/tests/test.pla

7 lines
102 B
Plaintext
Raw Normal View History

2025-10-14 07:14:53 +11:00
main = Func(): Int {
2025-10-16 17:35:00 +11:00
for (x: Int = 1; x <= 20; x = x + 1;) {
$print("i = %i\n", x)
2025-10-15 18:44:15 +11:00
}
2025-10-16 07:24:40 +11:00
return x;
2025-10-14 07:14:53 +11:00
}