Group Stream I/O
FClose()
Closes an open binary file.
FClose( <nHandle> ) --> lError
FOpen()
Opens a file at the operating system level.
FOpen( <cFilename>, [<nMode>]) --> nHandle
FRead()
Reads a character string from a file into a memory variable.
FRead( <nHandle>, @<cBuffer>, <nBytes> ) --> nBytes
FWrite()
Writes a character string into an open file.
FWrite( <nHandle>, <cString>, [<nBytes>] ) --> nBytesWritten
OutErr()
Outputs a list of expressions to the standard error device.
OutErr( <Expression,...> ) --> NIL
OutStd()
Outputs a list of expressions to the standard output device.
OutStd( <Expression,...> ) --> NIL