Skip to content

Instantly share code, notes, and snippets.

@rvanlieshout
Last active August 29, 2015 14:07
Show Gist options
  • Save rvanlieshout/4b5eb24e6105a7f95783 to your computer and use it in GitHub Desktop.
Save rvanlieshout/4b5eb24e6105a7f95783 to your computer and use it in GitHub Desktop.
bar = 1
def foo
bar = 2
end
foo()
puts bar
@bar = 1
def foo
@bar = 2
end
foo()
puts @bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment