Skip to content

Instantly share code, notes, and snippets.

@jamesgolick
Last active December 16, 2015 00:19
Show Gist options
  • Save jamesgolick/5347185 to your computer and use it in GitHub Desktop.
Save jamesgolick/5347185 to your computer and use it in GitHub Desktop.
class A
def hello
puts "Hello, World!"
end
end
class B < A; end
class C < B; end
class D < C; end
class E < D; end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment