JKEYAUTO CRT

Man Page Index


Description

Print messages to either stdout or stderr. The PRINT and CRT statement will display to stdout whereas the PRINTERR statement will display to stderr. The CRT statement will also translate all non-printable characters as the sequence ~nnn where nnn is a 3 digit decimal representation of the non-printable character.

 

Syntax

CRT {expression} {:}
PRINT {expression} {:}
PRINTERR {expression} {:}

: specifies no trailing new line will be printed. Without the : modifier then a new line will always be printed at the end of the "expression" string.

expression is the string to print. If not specified, no message is displayed, just a new line (unless of course the +:modifier was used).

 

Example

printerr "Fatal error " : $? : " when loading program MODUSER"


JKEYAUTO