Modules
Modules encapsulate a set of features whether it be of the language or of third-party software.
There are multiple ways to import modules:
- Import using the module name
- Access module using an alias
- Import specific values from the module
Users should avoid importing modules using * to avoid overriding local variables.