Modules
Modular, like the 80s
Modules are important because they allow us to store and structure code as folders in the filesystem. They are mostly useful fo sparating different implementations of data and functions. SMLL moduls are inspired by Java Packages. They are just nested folders.
Some where there is a modules path which the standard library is located. Inside that modules directory there is a directory named System with the Io file.
Importing modules simply works like this.
These simply translate to the following.
Last updated