Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] A couple of things regarding ports Re:(5)

From: al:bri:xtra at: 18-Sep-2000 21:41

> hmm, however, if I for example do like: > > dispatch [ > port1 [print first port1] > port2 [print first port2] > ] > > it waits for the first port before printing the input on the second. both
the ports are open/direct/lines Try something like: dispatch [port1 [print "Port1"] port2 [print "Port2"]] as your: print first port1 may be waiting for input on 'port1. That way, you can confirm that dispatch is working correctly. Andrew Martin ICQ: 26227169 http://members.ncbi.com/AndrewMartin/ http://members.xoom.com/AndrewMartin/