mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-04-18 03:00:27 -04:00
11 lines
143 B
TypeScript
11 lines
143 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];
|
|
}
|