mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-04-18 03:00:27 -04:00
12 lines
138 B
TypeScript
12 lines
138 B
TypeScript
// //! test_output(37)
|
|
|
|
export default function main() {
|
|
const x = 37;
|
|
|
|
function foo() {
|
|
return () => x;
|
|
}
|
|
|
|
return foo()();
|
|
}
|