sunlang/tests/test_for.sun

4 lines
64 B
Plaintext

print("Counting:");
for (var i = 0; i <= 5; i++) {
print(i);
}