How to create your own library¶
Create a workspace subdirectory with one .apl file per function. Each file should define a single function:
Each .apl file contains a function definition:
After saving, you can load the workspace and use the functions:
Note
User namespaces currently work through workspaces. Namespace-qualified access to user libraries (e.g. mylib::double) is not yet available -- use #import or )load instead.
See also: Organise code, Import standard library