mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-05-10 03:00:06 -04:00
11 lines
251 B
TypeScript
11 lines
251 B
TypeScript
// test_output! {"leftBowl":["apple","mango"],"rightBowl":["apple","mango","peach"]}
|
|
|
|
export default function main() {
|
|
const leftBowl = ['apple', 'mango'];
|
|
|
|
let rightBowl = leftBowl;
|
|
rightBowl.push('peach');
|
|
|
|
return { leftBowl, rightBowl };
|
|
}
|