mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-12 23:18:03 -05:00
11 lines
151 B
TypeScript
11 lines
151 B
TypeScript
//! test_output({"left":"right"})
|
|
|
|
export default function main() {
|
|
let x = {} as any;
|
|
let key = "left";
|
|
|
|
x[key] = key = "right";
|
|
|
|
return x;
|
|
}
|