View test.rb
module Foo | |
def say(text) | |
puts "Foo::say #{text}" | |
end | |
end | |
class Craig | |
include Foo | |
def say(text) | |
super |