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(37)
|
|
|
|
export default function main() {
|
|
const x = 37;
|
|
|
|
function foo() {
|
|
return () => x;
|
|
}
|
|
|
|
return foo()();
|
|
}
|