mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 07:28:03 -05:00
12 lines
135 B
TypeScript
12 lines
135 B
TypeScript
//! test_output("foo")
|
|
|
|
export default () => {
|
|
const stuff = {
|
|
foo() {
|
|
return "foo";
|
|
},
|
|
};
|
|
|
|
return stuff.foo();
|
|
};
|