Modules (API)

The standard modules are not yet implemented. Today only the io.println built-in is available directly.

Standard modules

ioPlanned

Input and output. io.println(value) prints a value.

mathPlanned

Mathematical functions and constants.

osPlanned

Operating-system facilities.

io.println is the one built-in available today; the rest of io is planned.

Using modules

Modules are pulled in with import. The statement is parsed today; loading will arrive with the modules themselves.

import io
import math