forked from xxq250/Nasal-Interpreter
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); |