Imports
Imports allow you to bring in other modules.
Currently these are added directly into the global namespace.
Note
Later imports will not automatically be in the global namspace.
How to do an import
Tip
You should always import stdlib! Especially if you need to work with arrays!
import my_module;
define main() {
// this function isn't defined here, we imported it
function_from_my_module();
}