mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-11 22:48:01 -05:00
12 lines
124 B
TypeScript
12 lines
124 B
TypeScript
//! test_output("foo")
|
|
|
|
export default () => {
|
|
return stuff.foo();
|
|
};
|
|
|
|
const stuff = {
|
|
foo() {
|
|
return 'foo';
|
|
}
|
|
};
|