blob: 5d6baaa7749969bbc0f29f449571e39c3d654722 (
plain) (
tree)
|
|
/* As you see, the language supports variable scopes */
let x = 18;
let foo = () => {
let x = 1;
print(x);
return x;
};
let main = () => {
print(x);
let x = 2;
let y= foo();
print(x);
return x + y;
};
|