|
External Development Guide: IDL Internals: Files and Input/Output |
|
The IDL_Print() and IDL_PrintF() functions output the value of IDL_VARIABLEs. IDL_Print() simply outputs to IDL_STDOUT_UNIT, while IDL_PrintF() outputs to a specified unit:
void IDL_Print(int argc, IDL_VPTR *argv, char *argk) void IDL_PrintF(int argc, IDL_VPTR *argv, char *argk)
The number of arguments to argv.
IDL_VPTRs of the IDL_VARIABLEs to be output.
Keywords. Set this argument to NULL ((char *) 0).
These functions are the implementation of the built-in IDL system procedures PRINT and PRINTF. See PRINT/PRINTF for information on the available arguments and the order in which you must specify them.
IDL Online Help (March 06, 2007)