Home »
Ruby »
Ruby Programs
Ruby program to create a module with constant
Ruby Example: Write a program to create a module with constant.
Submitted by Nidhi, on December 29, 2021
Problem Solution:
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.
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.
Ruby Modules and Mixins Programs »