Created
November 16, 2015 22:24
-
-
Save kkchu791/55a200a41e780d91c11d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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