Skip to content

Instantly share code, notes, and snippets.

@kaochenlong
Created January 7, 2016 14:03
Show Gist options
  • Save kaochenlong/0f5b91cd730fadec070b to your computer and use it in GitHub Desktop.
Save kaochenlong/0f5b91cd730fadec070b to your computer and use it in GitHub Desktop.
Module test
module Cc
def hello
world
end
def world
puts "world"
end
end
class Test
include Cc
end
t = Test.new
t.hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment