Files
Nasal-Interpreter/version2.0/run/run1.nas
Valk Richard Li cffe95f1d8 update
2020-02-04 17:48:14 +08:00

8 lines
69 B
Plaintext

var f=func(x)
{
if(x>9)return;
x+=1;
f(x);
return;
}
f(0);