home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ANews 3
/
AnewsCD3.iso
/
Multimedia
/
Documents
/
ARexx4Beginners
/
Articles_01-10
/
Example3-1.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-05-17
|
202b
|
9 lines
/* Example3-1.rexx */
Count = 1
DO FOREVER
SAY 'Hi there - I am your first example ARexx Program - Count =' Count
SAY 'Hold down the CTRL key and press C to stop me.'||'a'x
Count = Count + 1
END