mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-14 16:08:02 -05:00
17 lines
219 B
TypeScript
17 lines
219 B
TypeScript
//! test_output(["baz","baz"])
|
|
|
|
export default function main() {
|
|
let stuff = {
|
|
foo() {
|
|
this.bar = "baz";
|
|
return this.bar;
|
|
},
|
|
bar: "bar",
|
|
};
|
|
|
|
return [
|
|
stuff.foo(),
|
|
stuff.bar,
|
|
];
|
|
}
|