Created
July 12, 2017 13:31
-
-
Save morhekil/25a485e46e42cf9c4875eb44842fac47 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 Tryme | |
def call1 | |
target = 'boom' | |
puts target | |
end | |
def call2 | |
self.target = 'boom' | |
puts target | |
end | |
def target=(value) | |
puts "target= was called with #{value}" | |
end | |
def target | |
puts "target was called" | |
end | |
end | |
tm = Tryme.new | |
puts "CALL 1" | |
tm.call1 | |
puts "CALL 2" | |
tm.call2 |
Author
morhekil
commented
Jul 12, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment