home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 1995 February
/
SOFM_Feb1995.bin
/
pc
/
os2
/
zoc
/
install.fil
/
SCRIPT
/
RXSAMPLE
/
MISC
/
1_FIRST
next >
Wrap
Text File
|
1994-08-13
|
354b
|
20 lines
/* 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 !