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.
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.
Program/Source Code:
The source code to create a module with Constant is given below. The given program is compiled and executed successfully.
Output:
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