wip: i dont rembemer

This commit is contained in:
2026-07-11 18:07:07 +02:00
parent 4e2645e12d
commit 6bf255668a
8 changed files with 253 additions and 29 deletions
+15
View File
@@ -10,3 +10,18 @@ end
internal := closure();
internal();
a := "Global";
b := a;
c := b;
c = b = a;
d := c = b = a;
do
showA :: fn() do
print a;
end
showA();
a := "Local";
showA();
end