Back to overview

18. Standard library

Jik provides a small but useful standard library. The modules below cover common tasks such as strings, input/output, math, randomness, and testing.

These modules are imported in the same way as other Jik modules, but using paths under jik/.... For example:

use "jik/math"
use "jik/testing" as test

---