home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
164.lha
/
ARexx
/
Example_ARexx
/
ports.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
|
1988-04-28
|
287 b
|
13 lines
/* ports - test ports actions */
say 'Waiting for packet from ports2.rexx'
say ' '
call openport("testport")
call waitpkt('testport')
packet = getpkt('testport')
pktstring = getarg(packet)
call reply(packet,0)
say 'This is printed from ports.'
say 'Packet string is:' pktstring
exit(0)