Fixed nagging issues, read more

* A segfault from the inspector
* multiple returns no longer a goal
* Cleaned up the 'URGENT' comment tags
* Narrowed down what is needed for alpha
This commit is contained in:
2026-05-15 14:13:54 +10:00
parent 1660dc8b53
commit 3ab18c7b14
11 changed files with 50 additions and 61 deletions
-8
View File
@@ -1,5 +1,4 @@
/*
fn swap(a, b) {
return b, a;
}
@@ -9,11 +8,4 @@ var b = 69;
var c;
var d;
//BUG: still causes a segfault
c, d = swap(a, b);
*/
{ var str = "Hello"; var i = 0; while (i < 100) { str = str .. " World"; i++; } }