mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
20 lines
210 B
Plaintext
20 lines
210 B
Plaintext
fn capture(count: int) {
|
|
print count;
|
|
print capture;
|
|
|
|
if (count < 5) {
|
|
return count;
|
|
}
|
|
|
|
print count;
|
|
print capture;
|
|
|
|
count++;
|
|
count++;
|
|
|
|
// return capture(count + 1);
|
|
return -1;
|
|
}
|
|
|
|
print capture(52);
|