mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 07:28:03 -05:00
11 lines
144 B
TypeScript
11 lines
144 B
TypeScript
//! test_output([17,15,12])
|
|
|
|
export default function main() {
|
|
let a = 2;
|
|
let b = 3;
|
|
let c = 5;
|
|
a += b += c += 7;
|
|
|
|
return [a, b, c];
|
|
}
|