mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-12 23:18:03 -05:00
10 lines
130 B
TypeScript
10 lines
130 B
TypeScript
//! test_output(["b","a"])
|
|
|
|
export default function main() {
|
|
let x = ["a", "b"];
|
|
|
|
[x[0], x[1]] = [x[1], x[0]];
|
|
|
|
return x;
|
|
}
|