Skip to content

Instantly share code, notes, and snippets.

@13k
Created April 7, 2013 03:20
Show Gist options
  • Select an option

  • Save 13k/5328778 to your computer and use it in GitHub Desktop.

Select an option

Save 13k/5328778 to your computer and use it in GitHub Desktop.
def f
p x
end
f()
# undefined local variable or method `x' for main:Object (NameError)
def f
if false
x = 13
end
p x
end
f()
# => nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment