mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-04-18 03:00:27 -04:00
11 lines
165 B
TypeScript
11 lines
165 B
TypeScript
export default function main() {
|
|
const res = foo(); // Error: binds x before its declaration
|
|
const x = 3;
|
|
|
|
function foo() {
|
|
return x;
|
|
}
|
|
|
|
return res;
|
|
}
|