How to import standard library functions¶
Fully qualified access¶
Call any standard library function directly using its full path:
Import by name¶
Use #import to bind a function to a local name:
Import with an alias¶
List functions in a namespace¶
Available namespaces¶
$::str-- string utilities (trim, upper, lower)$::io-- file I/O (nread, nwrite)$::error-- error handling (ea, en)
See also: Standard library reference