Skip to content

Instantly share code, notes, and snippets.

Created May 14, 2013 07:08
Show Gist options
  • Save anonymous/5574203 to your computer and use it in GitHub Desktop.
Save anonymous/5574203 to your computer and use it in GitHub Desktop.
module Yahoo
def say
"으앙으앙"
end
end
class Base
include Yahoo
def say
"으앙"
end
end
puts Base.new.say
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment