Skip to content

Instantly share code, notes, and snippets.

@Mon-Ouie
Created January 6, 2012 16:47
Show Gist options
  • Save Mon-Ouie/1571374 to your computer and use it in GitHub Desktop.
Save Mon-Ouie/1571374 to your computer and use it in GitHub Desktop.
module Mod
def hello
puts "saying hello..."
done
end
end
class A
extend Mod
def self.bonjour; hello; end
def self.done; puts "fini"; end
end
class B
extend Mod
def self.ciao; hello; end
def self.done; puts "finitto"; end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment