mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-12 23:18:03 -05:00
10 lines
129 B
TypeScript
10 lines
129 B
TypeScript
//! test_output(10)
|
|
|
|
export default function () {
|
|
return foo(5);
|
|
}
|
|
|
|
function foo(this: unknown, x: number) {
|
|
return 2 * x;
|
|
}
|