mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-12 23:18:03 -05: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;
|
|
}
|