The byte_compile_file function byte-compiles file
producing a new file with the same name except a 'c' is added
to the output file name. For example, file is
"site.sl", then the function produces a new file named
site.slc.
Notes
The method parameter is not used in the current
implementation. Its use is reserved for the future. For now, set
it to 0.
The eval function parses a string as S-Lang code and executes the
result. This is a useful function in many contexts such as dynamically
generating function definitions where there is no way to generate
them otherwise.
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.