Q:

Ruby program to create a module with constant

belongs to collection: Ruby Modules and Mixins Programs

0

In this program, we will create a module. Then we will define a constant inside the created module. After that, we will access created module constant and print its value.

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 module with Constant is given below. The given program is compiled and executed successfully.

# Ruby program to create a 
# module with Constant

module MyModule
    Module_constant = "Hello World";
end

print "Module Constant: ",MyModule::Module_constant;

Output:

Module Constant: Hello World

Explanation:

In the above program, we created a module MyModule. Then we defined a constant Module_constan inside the created module. After that, we printed the value of the module constant.

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

total answers (1)

Ruby program to create a class inside the module... >>
<< Ruby program to create a nested module...