REBOL 3 Docs | Guide | Concepts | Functions | Datatypes | Errors |
TOC < Back Next > | Updated: 27-Mar-2009 Edit History |
One of the primary REBOL principles is to keep simple things simple. With that in mind REBOL was designed so most programs do not require you to load external modules, libraries, or use include files. The most important features and functions are included by default.
However, when programs get larger, or require more special types of features, it helps to divide the program into smaller pieces: modules.
In REBOL a module is just a file or block that by default has its own global namespace. Variables defined in a module, even at the top level, will not interfere with variables defined in the system or in other modules. They are isolated in their own special context (very similar to an object.)
This section includes:
TOC < Back Next > | REBOL.com - WIP Wiki | Feedback Admin |