Skip to content

Instantly share code, notes, and snippets.

Created February 8, 2012 19:08
Show Gist options
  • Save anonymous/e0c5f601c3db915843f2 to your computer and use it in GitHub Desktop.
Save anonymous/e0c5f601c3db915843f2 to your computer and use it in GitHub Desktop.
module A
def foo
end
end
module B
def bar
foo()
end
end
class C
include A
include B
end
c = C.new
c.bar()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment