Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8030839
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T00:53:47+00:00 2026-06-05T00:53:47+00:00

I am trying to understand a piece of code with multiple modules module a;

  • 0

I am trying to understand a piece of code with multiple modules

module a; module b; module c;

def foo
    #something 
end

end
end
end

So what exactly does the above code mean? Is it like all 3 modules have foo and I can access a.foo or b.foo etc..?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T00:53:49+00:00Added an answer on June 5, 2026 at 12:53 am

    I can see how that would be confusing. It is very badly laid out. Split the module declarations onto separate lines and it makes more sense. Ruby allows some things to be separated by semicolons if written on one line… that is being abused here and just leads to confusion.

    The code expands to this, when correctly laid out:

    module a
      module b
        module c
          def foo
            #something 
          end
        end
      end
    end
    

    Other examples of using a semicolon to write a definition on a single line include:

    class Foo < Bar; def zip; if @terrifying; puts "Yes"; else; puts "No"; end; end; end
    

    You can probably see why I say this isn’t well written. Also, the module names should begin with an Uppercase letter.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to understand the following piece of code: sub foo { ... if
I'm trying to understand how a piece of code is working. I've enabled a
In trying to understand Go, I ran into this piece of code in websocket.go
I am trying to understand how this piece of self-replicating code works (found here
I trying to understand this piece of code Function.prototype.method = function (name, fn) {
I'm trying to understand why my code isn't working. this is a piece of
I'm having a weird situation that I'm trying to understand. This piece of code
I have a piece of Javascript code I'm trying to understand // read big-endian
I'm still trying to understand this piece of code that I found in a
I'm trying to understand how this piece of code from Keith Peter's Advanced Actionscript

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.