Skip to content

Instantly share code, notes, and snippets.

@kkchu791
Created November 16, 2015 22:24
Show Gist options
  • Save kkchu791/55a200a41e780d91c11d to your computer and use it in GitHub Desktop.
Save kkchu791/55a200a41e780d91c11d to your computer and use it in GitHub Desktop.
def method
a = 50
puts a
end
a = 10
method # calls method with local variable a = 50, then puts local varaible
puts a # puts the global variable a = 10 from line 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment