Files
ValueScript/inputs/passing/swap.ts
2023-03-02 18:23:59 +11:00

10 lines
131 B
TypeScript

// test_output! ["b","a"]
export default function main() {
const x = ['a', 'b'];
[x[0], x[1]] = [x[1], x[0]];
return x;
}