mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-11 22:48:01 -05:00
12 lines
140 B
TypeScript
12 lines
140 B
TypeScript
//! test_output([1,5,14])
|
|
|
|
export default function main() {
|
|
let x = 0;
|
|
|
|
return [
|
|
x += 1 * 1,
|
|
x += 2 * 2,
|
|
x += 3 * 3,
|
|
];
|
|
}
|