Skip to content

Instantly share code, notes, and snippets.

@coolbrg
Created June 25, 2014 03:04
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 coolbrg/66e797cffed73275c290 to your computer and use it in GitHub Desktop.
Save coolbrg/66e797cffed73275c290 to your computer and use it in GitHub Desktop.
Multiple Inheritance Demo
module Aa
def a_foo
puts "A's foo"
end
end
module Bb
def b_foo
puts "B's foo"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment