Files
Toy/scripts/hello_world.toy
T
Ratstail91 6c055a0435 Implemented garbage collection
As a whole, this is still tentative.
2026-05-08 16:28:12 +10:00

13 lines
123 B
Plaintext

fn swap(a, b) {
return b, a;
}
var a = 42;
var b = 69;
var c;
var d;
//BUG: still causes a segfault
c, d = swap(a, b);