rebol [] server-port: open/lines tcp://:4321 forever [ connection-port: first server-port until [ wait connection-port error? try [do first connection-port] ] close connection-port ] close server-port