Ruby - Modules and Mixins
What will be the output of the following Ruby code?
module Greetings
def hello
"Hello from module"
end
end
class Person
extend Greetings
end
puts Person.hello