Source code
Revision control
Copy as Markdown
Other Tools
var f = 99;↩
↩
function g(a) {↩
if (a) {↩
var e = 55;↩
function f() {↩
print("f");↩
}↩
assertEq(f == 99, false);↩
}↩
}↩
↩
g(true);↩