Files
Toy/scripts/hello_world.toy
2026-04-15 15:04:54 +10:00

13 lines
141 B
Plaintext

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