> 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/
-><-

Reply via email to