10 lines
99 B
JavaScript

export var test = 2;
test = 5;
test++;
(function () {
var test = 2;
test = 3;
test++;
})();