Ruby - Modules and Mixins
What will be the output of this Ruby code?
module Alpha
module Beta
def self.message
'Greetings from Beta'
end
end
end
puts Alpha::Beta.message