Ruby - Modules and Mixins
What is the output of this Ruby code?
module Greetings
def greet
"Hi!"
end
end
class Person
include Greetings
end
p = Person.new
puts p.greet