added garbage collector draft

This commit is contained in:
Francesco Cozzuto
2021-12-06 00:12:02 +01:00
parent 60b871be55
commit dbcf50c71b
21 changed files with 389 additions and 48 deletions
+10
View File
@@ -0,0 +1,10 @@
i = 0;
n = 10000000;
while i < n:
{
1 + 1 * 1;
i = i + 1;
print('\r', 100.0 * i / n, '% ');
}