Compiles an SPL function file into an OPL file.
|
"filename", overwrite, expand, load, verbose) |
"filename" |
- |
String. The filename of the SPL file. Function form. |
|||||||||
overwrite |
- |
|
|||||||||
expand |
- |
|
|||||||||
load |
- |
|
|||||||||
verbose |
- |
|
SPLCOMPILE filename
filename - The filename of the SPL file, without quotes. Command form.
splcompile("myfuncs.spl")
compiles myfuncs.spl, and creates the file, myfuncs.opl. The OPL file does not include the source code and is not loaded into memory.
splcompile myfuncs.spl
same as above. The command form is easier to type when using the command line.
SPLCOMPILE only creates OPL files. By default, it does not read the functions into the Worksheet. Any errors found during compile are written to the ASCII text file, filename.err.
The command form does not accept optional arguments.
See SPLCOMPILEALL to compile one or more SPL files in a folder