security holes fixed

This commit is contained in:
Li Haokun
2021-08-19 17:54:36 +08:00
committed by GitHub
parent b2f09ec855
commit 1982ab6b8e
6 changed files with 96 additions and 90 deletions
+1 -2
View File
@@ -1,13 +1,12 @@
# Y combinator by ValKmjolnir
import("lib.nas");
var count=0;
var fib=func(f){
return f(f);
}(
func(f){
return func(x){
count+=1;
if(x<2) return x;
return f(f)(x-1)+f(f)(x-2);
}