Skip to content

Instantly share code, notes, and snippets.

@ka8725
Created April 13, 2016 00:39
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 ka8725/20e7cffbc1b816dd689e83964b0676ae to your computer and use it in GitHub Desktop.
Save ka8725/20e7cffbc1b816dd689e83964b0676ae to your computer and use it in GitHub Desktop.
class Base
end
class A < Base
def foo
puts 'foo'
end
end
class A < Base
def bar
puts 'bar'
end
end
A.new.foo
A.new.bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment