mirror of
https://github.com/egormanga/Slang.git
synced 2025-03-01 18:09:30 +03:00
9 lines
98 B
Plaintext
9 lines
98 B
Plaintext
#| Slang `for' test. |#
|
|
|
|
main {
|
|
for i in (0 to 5) {
|
|
stdio.println(i)
|
|
stdio.println(i+2)
|
|
}
|
|
}
|