The Note command can be used to by a Formatting user exit to print a line of text.
It isn't there specify
the text as either "It isn't there" or 'It isn''t there'If no text is specified, then no data is printed. However, any blank lines specified using the SPACE parameter are still written.
If the SPACE parameter is specified without count, then it defaults to 1.
If a parameter is specified multiple times, then only the last specification takes effect.
/* REXX */
"NOTE 'This is a simple note.'"
"NOTE 'This note follows the previous without any blank lines inserted.'"
"NOTE 'This note has 2 blank lines ahead of it.' SPACE(2)"
This is a simple note.
This note follows the previous without any blank lines inserted.
This note has 2 blank lines ahead of it.