Interpret a file containing S-lang code.
Integer_Type evalfile (String_Type file)
The evalfile function loads file into the interpreter.
If no errors were encountered, 1 will be returned; otherwise,
a S-lang error will be generated and the function will return zero.
define load_file (file)
{
ERROR_BLOCK { _clear_error (); }
() = evalfile (file);
}
eval, autoload