Skip to content

Instantly share code, notes, and snippets.

@marocchino
Forked from anonymous/test.rb
Last active December 17, 2015 07:39
Show Gist options
  • Save marocchino/5574213 to your computer and use it in GitHub Desktop.
Save marocchino/5574213 to your computer and use it in GitHub Desktop.
module Yahoo
def say
"An"
end
end
class Base
include Yahoo
def say
"AnAn"
end
end
puts Base.new.say
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment