Modules
<< core.io ~ import the built-in IO module<< "lib/math.qn" ~ import a user module by path (/ or \)
>> add = (a :: Num, b :: Num) => a + b ~ `>>` exports an item; unmarked items are file-private- The built-in modules are
core.io,core.test,core.test.report,core.cli,core.time, andcore.net; their members are real functions. See the corelib index for each module’s API reference. Textand the operators are built-ins and need no import.- A module exposes only its
>>-exported items.
(See examples/use_module.qn, which imports examples/mathlib.qn.)