Skip to content

Instantly share code, notes, and snippets.

@morhekil
Created July 12, 2017 13:31
Show Gist options
  • Save morhekil/25a485e46e42cf9c4875eb44842fac47 to your computer and use it in GitHub Desktop.
Save morhekil/25a485e46e42cf9c4875eb44842fac47 to your computer and use it in GitHub Desktop.
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
@morhekil
Copy link
Author

% ruby -v
ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-darwin15]
% ruby tryit.rb
% ruby tryit.rb
CALL 1
boom
CALL 2
target= was called with boom
target was called

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment