from ts on 2001-07-24 at 04:03:54:
> >>>>> "E" == Eli Green <eli.green / codedogs.ca> writes:
> 
> E> newsock, ignore = socket.accept
> E> then I just throw away the value of ignore.
> 
>  You don't need ignore
> 
> pigeon% ruby -e 'a = 1, 2; p a'
> [1, 2]
> pigeon% 
> 
> pigeon% ruby -e 'a, = 1, 2; p a'
> 1
> pigeon% 
> 
> 
> Guy Decoux
> 

Cool! Thanks!

I tried
newsock, nil = ns.accept
but that didn't work. Assigning to nil appears to be a no-no. =)

Incidentally, you should all give yourselves a pat on the back ... I've never
seen a bunch of people more helpful to drowning newbies before. =)

-- 
Eli Green
Connection closed by foreign host.