forked from xxq250/Nasal-Interpreter
update
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
var f=func(x)
|
||||
{
|
||||
if(x>9)return;
|
||||
x+=1;
|
||||
f(x);
|
||||
return;
|
||||
}
|
||||
f(0);
|
||||
Reference in New Issue
Block a user