Skip to content

Instantly share code, notes, and snippets.

@anekos
Last active February 2, 2017 12:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anekos/3b4bbe67c1240ee63e3af4c9281c0384 to your computer and use it in GitHub Desktop.
Save anekos/3b4bbe67c1240ee63e3af4c9281c0384 to your computer and use it in GitHub Desktop.
varrrrrrrrrrrr
function f() {
return v;
var v;
}
function g() {
if (false) { var v }
return v;
}
function h() {
var v = v + 1;
return v;
}
println(f())
println(g())
println(h())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment