Implemented garbage collection

As a whole, this is still tentative.
This commit is contained in:
2026-05-08 16:28:12 +10:00
parent be84a8dfe2
commit 6c055a0435
15 changed files with 267 additions and 80 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
//standard example, using 'while' instead of 'for', because it's not ready yet
var counter: int = 0;
var counter: Int = 0;
while (++counter <= 100) {
var result: string = "";
var result: String = "";
if (counter % 3 == 0) {
result = result .. "fizz";