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

[REBOL] Re: build a dhcpd with Rebol?

From: andreas:bolka:gmx at: 27-Oct-2003 20:43

Monday, October 27, 2003, 7:25:44 PM, Eric wrote:
> a simple code example wouldn't be unwelcome.
an ultra simple echo server + client: -- server -- REBOL [ title: 'server ] srv: open udp://:9001 forever [ cli: wait srv print copy cli ] -- client -- REBOL [ title: 'client ] foo: open udp://127.255.255.255:9001 insert foo "bar" close foo -- Best regards, Andreas