Skip to content

Instantly share code, notes, and snippets.

@ku1ik
Created July 5, 2012 12:57
Show Gist options
  • Save ku1ik/3053536 to your computer and use it in GitHub Desktop.
Save ku1ik/3053536 to your computer and use it in GitHub Desktop.
class A
def foo
"jola"
end
def bar
p foo
if false
foo = "misio"
end
p foo
end
end
A.new.bar
# What will be the output? And why?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment