home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
339.lha
/
SerMod
/
rexx
/
chat.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1990-02-08
|
182b
|
13 lines
/* chat.rexx - chat over ROBBS serial */
ports = showlist('p')
if pos('ROBBS_ser',ports) = 0 then exit 0
address 'ROBBS_ser'
do forever
x = readln(stdin)
lsend '15'x || x
end