Files
Toy/scripts/hello_world.toy
T
Ratstail91 3ab18c7b14 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
2026-05-15 14:13:54 +10:00

12 lines
92 B
Plaintext

fn swap(a, b) {
return b, a;
}
var a = 42;
var b = 69;
var c;
var d;
c, d = swap(a, b);