System Functions
CPL( ) Compile String
   
Format CPL(statement$ [ ,optval$ ] [,ERR=stmtref])
 
Where:
 
  statement$ String containing the statement to compile.
   
  stmtref Program line number or statement label to which to transfer control.
     
  optval$ Optional second parameter that is ignored by the system -- provided for compatibility with other BB dialects.
This is a
+PxPlus Exclusive
     
   
Returns ProvideX compiled format of the statement.
   
Description The CPL( ) function returns the ProvideX internal (compiled) format of the statement provided in the string argument statement$.
   
Example MYSRS_IOL$=CPL("IOLIST A$,B$,C$")
READ DATA FROM CUR_RECORD$ TO IOL=MYSRS_IOL$