Skip to content

Instantly share code, notes, and snippets.

@jonathan
Created February 11, 2010 16:24
Show Gist options
  • Save jonathan/301668 to your computer and use it in GitHub Desktop.
Save jonathan/301668 to your computer and use it in GitHub Desktop.
#/usr/bin/env ruby
# encoding: utf-8
module Foo
def hello
puts 'hi'
end
end
class Baz
extend Foo
end
Baz.hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment