tostdo |
Table of contents
ProcedureTOSTDO ( To Standard Output) SUBROUTINE TOSTDO ( LINE ) AbstractWrite a line of text to standard output. Required_ReadingNone. KeywordsUTILITY DeclarationsIMPLICIT NONE CHARACTER*(*) LINE Brief_I/OVARIABLE I/O DESCRIPTION -------- --- -------------------------------------------------- LINE I is a line of text to be written to standard output Detailed_InputLINE is a character string containing text to be written to standard output. Detailed_OutputNone. ParametersNone. Exceptions1) If an error occurs while attempting to write to the standard output, the error is signaled by a routine in the call tree of this routine. FilesNone. ParticularsThis routine is a macro for the subroutine call CALL WRITLN ( LINE, STDOUT ) Where STDOUT is the logical unit connected to standard output. ExamplesSuppose you need to create a message to be printed on the user's terminal. Here is how to use TOSTDO to handle this task. CALL TOSTDO ( 'Hello. ' ) CALL TOSTDO ( 'My Name is HAL.' ) CALL TOSTDO ( 'I became operational January 12, 1997 on the ' ) CALL TOSTDO ( 'campus of the University of Illinois in ' ) CALL TOSTDO ( 'Urbana, Illinois.' ) RestrictionsNone. Literature_ReferencesNone. Author_and_InstitutionJ. Diaz del Rio (ODC Space) W.L. Taber (JPL) VersionSPICELIB Version 1.0.1, 03-JUN-2021 (JDR) Edited the header to comply with NAIF standard. SPICELIB Version 1.0.0, 18-SEP-1996 (WLT) |
Fri Dec 31 18:37:02 2021