[REBOL] Port Problems again
From: ptretter:charter at: 24-Oct-2000 14:59
Doesnt work for me. If I open another script and try to insert port
somedata to those ports it doesnt work. Can anyone else tell me or show me
a script where they have got it to work.
Paul Tretter
---------------------------------------------------------
REBOL[]
port1: open/direct/lines tcp://24.217.21.225:55
port2: open/direct/lines tcp://24.217.21.225:56
while [true][
dispatch [
port1 [print "port1 awake"]
port2 [print "port2 awake"]
]
print "hello"
if buffer1 <> none [print buffer1]
if buffer2 <> none [print buffer2]
]
halt