Skip to content

Instantly share code, notes, and snippets.

@enebo

enebo/a.rb Secret

Created September 9, 2021 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enebo/460bae3b78c01aee9156334a46fde7d6 to your computer and use it in GitHub Desktop.
Save enebo/460bae3b78c01aee9156334a46fde7d6 to your computer and use it in GitHub Desktop.
class Parent < java.lang.Object
def toString
"parent " + super
end
end
class Child < Parent
def test
"child " + toString
end
end
p Child.new.test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment