NAME remark - print single-line message SYNOPSIS call remark (message) integer message - message is a hollerith array DESCRIPTION Remark writes the message onto the standard error file ERROUT. A NEWLINE is always generated, even though one may not appear in the message. The message array is generally a Fortran hollerith string in the format generated by the Ratfor quoted string capability. On some systems it may be necessary to indicate the end of the message with a period ".". For example, call remark ("this is a warning message.") The escape character "@" may be used to output a period (e.g. @.) and on some systems, the escape sequences "@t" and "@n" and "@b" may be used to output a TAB, NEWLINE, and BACKSPACE respectively. IMPLEMENTATION Remark is very similar to error except it returns after printing, instead of stopping. It expects its argument to be a hollerith string which is produced by the ratfor quoted string capability. If your system has no way of determining the end of hollerith strings, you might have to require users to include a termination character such as a ".". (All the quoted strings in the software tools source code do terminate with a dot.) Remark is similar to the following, except the message string is hollerith rather than character: call putlin (message, ERROUT) call putch (NEWLINE, ERROUT) SEE ALSO error, putlin, putch, prompt DIAGNOSTICS None