include [function]
include( string file[, bool override ] )
tries to load a library or a file according to the include path
- the order of actions:
- first, a library load is attempted
- on failure, a file is looked for by every entry of the sys_include_path variable (? - the file replacement symbol, | - file directory replacement symbol, ; - separator)
- if file is not found, everything stops
- if file is found, first - a library load is attempted, on failure - bytecode & source code loading
- this function is also available as a replicating statement 'include' (ex. 'include "fmt", "io";' works the same way as include("fmt"); include("io");)