Revisions

gist: 180105 Download_button fork
public
Public Clone URL: git://gist.github.com/180105.git
Embed All Files: show embed
var scoped.js #
1
2
3
4
5
6
7
8
9
> print(empty)
(shell):1: ReferenceError: empty is not defined
print(empty)
^
> (function () { var empty = 4 })();
> print(empty);
(shell):1: ReferenceError: empty is not defined
print(empty);