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);