Skip to content

Instantly share code, notes, and snippets.

@borntyping
Created April 20, 2016 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save borntyping/e9f0768ecad2a0043bd6c52a3b17e303 to your computer and use it in GitHub Desktop.
Save borntyping/e9f0768ecad2a0043bd6c52a3b17e303 to your computer and use it in GitHub Desktop.
module ExampleModule
def hello
puts 'hello world'
end
end
class ExampleClass
include ExampleModule
end
ExampleClass.new.hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment