Skip to content

Instantly share code, notes, and snippets.

@msroot
Last active October 31, 2016 23:58
Show Gist options
  • Save msroot/a43537469632db71c4dcb8352e68d058 to your computer and use it in GitHub Desktop.
Save msroot/a43537469632db71c4dcb8352e68d058 to your computer and use it in GitHub Desktop.
def (t = Object.new).yolo(other)
puts other
end
t.yolo(2)
# 2.1.6 :023 > t.yolo(2)
# 2
t = String.new("yolo")
def t.to_s
puts "other " + super
end
t.to_s
# other yolo
# => nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment