mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-07-22 10:58:47 +08:00
8 lines
69 B
Plaintext
8 lines
69 B
Plaintext
var f=func(x)
|
|
{
|
|
if(x>9)return;
|
|
x+=1;
|
|
f(x);
|
|
return;
|
|
}
|
|
f(0); |