basic_module_definition
🗂️ Define a Basic Module
Modules group related methods, constants, or classes without allowing instantiation. They serve as namespaces or mixins. Start with the module
keyword and end with end
.
module Greetings
def hello
'Hello from module'
end
end