Ruby - Modules and Mixins
What will be the output of the following Ruby code?
module Outer
module Inner
def self.greet
"Hello from Inner"
end
end
end
puts Outer::Inner.greet