mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-04-18 03:00:27 -04:00
7 lines
136 B
TypeScript
7 lines
136 B
TypeScript
// test_output! [".","a","b","c","."]
|
|
|
|
export default function () {
|
|
const middle = ["a", "b", "c"];
|
|
return [".", ...middle, "."];
|
|
}
|