Chip Rosenthal wrote:

> > You can use the builtin list type.  To add a new entry to the
> > back, do:
> >
> >    @list = (@list, $newElem);
> >
> > and to pop something off the front of the queue, try:
> >
> >    ($firstElem, @list) = @list;
>
> That's a simple queue.  I think he wanted something different.

actually this does everything I need. But thanks for the tip.=>

--
__________________________________________________
 Justin Georgeson
 Institute for Advanced Technology -- System Administrator
 University of Texas at Austin -- Dept. of Computer Science
 http://www.cs.utexas.edu/users/pyros
 [EMAIL PROTECTED]



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

Reply via email to