mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-14 07:57:57 -05:00
8 lines
127 B
TypeScript
8 lines
127 B
TypeScript
//! test_output([[1,2,3,4],[4,3,2,1]])
|
|
|
|
export default function main() {
|
|
let x = [1, 2, 3, 4];
|
|
|
|
return [x, x.reverse()];
|
|
}
|