Creating and using modules§
A module is usually a source file or set of source files that expose Raku constructs [1] .
Modules are typically packages (classes, roles, grammars), subroutines, and sometimes variables. In Raku module can also refer to a type of package declared with the module keyword (see Module Packages and the examples below) but here we mostly mean "module" as a set of source files in a namespace.
Looking for and installing modules.§
See Using Modules: Finding and Installing
Basic structure§
Loading and basic importing§
Finding installed modules§
See Using Modules: Finding and Installing
Testing modules and a distribution§
Distributing modules§
Preparing the module§
See Making Modules: The Configuration and Structure