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