mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 07:28:03 -05:00
11 lines
153 B
TypeScript
11 lines
153 B
TypeScript
// test_output! ["a","b"]
|
|
|
|
export default function main() {
|
|
let log = [];
|
|
const x = {} as any;
|
|
|
|
x[log.push('a')] = log.push('b');
|
|
|
|
return log;
|
|
}
|