Skip to content

Instantly share code, notes, and snippets.

@jamster
Created August 7, 2010 20:02
Show Gist options
  • Select an option

  • Save jamster/513129 to your computer and use it in GitHub Desktop.

Select an option

Save jamster/513129 to your computer and use it in GitHub Desktop.
module MyModule
def print_hello
puts "hello"
end
end
class MyClass
include MyModule
end
MyClass.new.print_hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment