Ruby - Modules and Mixins
What will be the output of the following Ruby code?
module Talk
def speak
"Hello!"
end
end
class Dog
include Talk
end
puts Dog.new.speak