Ruby - Modules and Mixins
What will be the output of this Ruby code?
module Talkative
def speak
"Hello!"
end
end
class Person
include Talkative
end
p = Person.new
puts p.speak