Ruby - Modules and Mixins
What will be the output of the following Ruby code?
module Greetings
def self.say_hello
"Hello!"
end
end
puts Greetings.say_hello