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
+1 -1
View File
@@ -1,5 +1,5 @@
fn makeCounter() {
var counter: int = 0;
var counter: Int = 0;
fn increment() {
return ++counter;