Q:

Ruby program to create a class inside the module

belongs to collection: Ruby Modules and Mixins Programs

0

In this program, we will create a module. Then we will create a class inside the created module with a method. After that, we will access created class using the "::" operator outside the module.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to create a class inside the module is given below. The given program is compiled and executed successfully.

# Ruby program to create a class 
# inside the module

module MyModule
    class MyClass
        def SayHello
            puts "Hello World";
        end
    end
end

obj = MyModule::MyClass.new;
obj.SayHello();

Output:

Hello World

Explanation:

In the above program, we created a module MyModule. Then we created class MyClass inside the module and defined the SayHello() method. After that, we created the object of the class and called SayHello() method, and printed the "Hello World" message.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

<< Ruby program to create a module with constant...