mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-14 16:08:02 -05:00
11 lines
151 B
TypeScript
11 lines
151 B
TypeScript
// test_output! ["a","b"]
|
|
|
|
export default function main() {
|
|
let log = [];
|
|
let x = {} as any;
|
|
|
|
x[log.push("a")] = log.push("b");
|
|
|
|
return log;
|
|
}
|