--- Charles Lu <[EMAIL PROTECTED]> wrote:
> Functions like pop(), push() allow you to add or remove one element
> to or from a list.  Is there a function that allows you to add or
> remove "X"  number of elements where "X" > 1?

push() =o)

 @x = ();
 push @x, qw / a b c d e /;
 print "@x \n";

prints:
 a b c d e 



__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/

Reply via email to