z/OS TSO/E REXX User's Guide
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


Syntax

z/OS TSO/E REXX User's Guide
SA32-0982-00

CLIST REXX
Continuing a statement over more than one line Continuing an instruction over more than one line
Use - or +
 IF &STR(SYSDATE)=&STR(10/13/87) THEN +
WRITE On &SYSDATE the system was down.
Use ,
say 'This instruction',
 'covers two lines.'
Separating statements within a line Separating instructions within a line
No more than one statement per line Use ;
do 5; Say 'Hello'; end
Character set of statements Character set of instructions
Must be in uppercase Can be upper, lower, or mixed case
Comments Comments
Enclose between /* */, closing delimiter optional at the end of a line. Enclose between /* */, closing delimiter always required.

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014