This commit is contained in:
2026-02-11 16:35:05 +01:00
parent ee279425f2
commit 4e2645e12d
13 changed files with 229 additions and 176 deletions
+12 -2
View File
@@ -11,10 +11,20 @@ end
function_fatcoty_factory :: fn() do
print "Function Factory Factory";
function_factory
return function_factory;
end
//function();
//function_factory()();
function_fatcoty_factory()()();
//function_fatcoty_factory()()();
clock()
closure :: fn() do
value = "Closure";
internal :: fn() do
print value;
end
return internal;
end
closure()