/* REXX */
/* ^^^^^^ REXX programs always begin with /* REXX */ on the first line */

/* clear the screen */
CLS

/* set a variable */
WHO= World

/* output text and variable */
WRITELN Hello WHO !

/* Ask user for his/her name */
ASK '"What is your name"'
WHO= ZOCRESULT()

/* send some text to the ZOC window */
WRITELN Hello WHO !

