mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-12 23:18:03 -05:00
11 lines
152 B
TypeScript
11 lines
152 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;
|
|
}
|