Created
July 23, 2015 15:52
-
-
Save novikserg/322381bfd19e6fb350ba to your computer and use it in GitHub Desktop.
This file contains 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
class MyClass | |
def word | |
"word" | |
end | |
def go | |
word = word | |
word | |
end | |
end | |
def local_stuff | |
mc = MyClass.new | |
puts mc.go | |
end | |
local_stuff # => nil |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment