mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-12 23:18:03 -05:00
15 lines
204 B
TypeScript
15 lines
204 B
TypeScript
// test_output! ["c","a","b"]
|
|
|
|
export default function main() {
|
|
let log = [];
|
|
let x = {} as any;
|
|
|
|
[
|
|
x[log.push('a')] = log.push('b')
|
|
] = [
|
|
log.push('c') && undefined
|
|
];
|
|
|
|
return log;
|
|
}
|