> > >    @list = (@list, $newElem);
> > >
> > > and to pop something off the front of the queue, try:
> > >
> > >    ($firstElem, @list) = @list;

Do a man perlfunc and look up 'shift' and 'push'. They're MUCH faster
versions of the above, iirc.

Taral

---------------------------------------------------------------------------
Send administrative requests to [EMAIL PROTECTED]

Reply via email to