This commit is contained in:
Andrew Morris
2022-05-22 12:03:02 +10:00
parent d2873abda9
commit f48b7abb5f
2 changed files with 23 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
export default function main() {
let x = [1, 2, 3, 4];
return [x, x.reverse()];
}