On Fri, 22 Oct 2004 12:40:11 +0200 (CEST)
c r <[EMAIL PROTECTED]> wrote:


> How can I easily cancatenate two lists?
>  
> i.e. 
>  
> @list1 = qw(1 2 3);
>  
> @list2 = qw(4 5 6);


untested

push(@list1,@list2);


Owen

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to