import (string file[, boolean overwrite]) ⇒ void
Imports all functions except the main
function found in compiled
script (compiled using the -c
ZAC). If the overwrite
variable is given the value true
, it
will overwrite internally defined functions.
Notes
Once a library file has been imported from the expected file and has succeeded, the library can be accessed by its name. When the library is initially compiled, the -n argument allows the compiler to give it a name. E.g.
zpe -c stdLib.txt -n stdLib -o stdLib.zen
In this case, the library is accessed using the stdLib name:
$lib = new stdLib()