mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
13 lines
141 B
Plaintext
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); |