This commit is contained in:
Valk Richard Li
2020-02-04 17:48:14 +08:00
committed by GitHub
parent 22bfe370d2
commit cffe95f1d8
4 changed files with 25 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
var f=func(x)
{
if(x>9)return;
x+=1;
f(x);
return;
}
f(0);