| loads a file into MINERVA.
load(+FileName)
load/1 loads the MINERVA-Code of FileName.mbc into MINERVA.
Arguments
FileName string
Examples
| load(operator). |
If the file operator.mbc exists, contains legal minerva code and
can be read, the definitions in operator.mbc will be loaded into
the MINERVA database and the initialization code (init-Directive)
will be executed.
|
| load('http://host/dir/prog.mbc'). |
| load('ftp://host/dir/prog.mbc'). |
| load('file:///C:/minlocal/hi_world.min'). |
Standard
This predicate is not part of the ISO-Prolog Standard.
See also
asserta/1,
assertz/1,
abolish/1,
collect/3,
unload/1,
loaded/1/2,
retract/1,
retractall/1.
|