Move memory allocator to own func and prefix internal functions to prevent collisions

This commit is contained in:
nub31
2025-02-01 17:24:51 +01:00
parent e7d1801abc
commit 896d5a5e13
3 changed files with 30 additions and 33 deletions

View File

@@ -23,7 +23,7 @@ func main() {
x[23] = "test";
println(x[22]);
println(x[23]);
println(arr_size(x));
}