--- 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/
- Pushing more than 1 item onto a list Charles Lu
- Re: Pushing more than 1 item onto a list Paul
- Re: Pushing more than 1 item onto a list Brett W. McCoy
- Re: Pushing more than 1 item onto a list Chas Owens
- Re: Pushing more than 1 item onto a list Karthik Krishnamurthy
- Re: Pushing more than 1 item onto a list Timothy Kimball