mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
10 lines
62 B
Plaintext
10 lines
62 B
Plaintext
|
|
|
|
|
|
fn loop(count) {
|
|
print count++;
|
|
|
|
loop(count);
|
|
}
|
|
|
|
loop(0); |