Files
Toy/scripts/hello_world.toy
2026-04-12 15:02:07 +10:00

13 lines
139 B
Plaintext

fn swap(a, b) {
return b, a;
}
var a = 42;
var b = 69;
var c;
var d;
//TODO: reverse the assignment bytecode order?
c, d = swap(a, b);