This commit is contained in:
2025-12-22 13:39:17 +08:00
parent 720ae2bb26
commit 26bc387032
5 changed files with 69 additions and 12 deletions

View File

@@ -1,6 +1,9 @@
const println := __fstdout_println;
for var i=0;i<10;i=i+1
var call := 0;
func t()
{
println("Loop ", i);
}
call = call + 1;
__fstdout_println(call);
t();
}
t();