Ruby - Modules and Mixins
Given the following nested module declarations, which is the correct way to define a module
Inner inside module Outer in Ruby?module Outer # Your code here end
