home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 2
/
AACD 2.iso
/
AACD
/
Programming
/
ARexx4Beginners
/
Articles_01-10
/
Example3-2.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1995-06-01
|
219 b
|
13 lines
/* Example3-2.rexx */
PARSE ARG Name','Age
IF Name = '' | Age = '' THEN DO
SAY 'You should have put your name and age after the RX Example3-2'
EXIT
END
SAY 'Hi there' Name||'. You say you are' Age' years old.'