Skip to content

Instantly share code, notes, and snippets.

@jwaldrip
Created September 19, 2012 20:41
Show Gist options
  • Save jwaldrip/3752130 to your computer and use it in GitHub Desktop.
Save jwaldrip/3752130 to your computer and use it in GitHub Desktop.
module Penis
def self.included(base)
puts "Making Babies!"
end
end
class Vagina
include Penis
end
Making Babies!
=> Vagina
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment