on Wed, 03 Jul 2002 09:51:37 GMT, Michael Rauh wrote: > that's ok, but is it possible to put especially the > > my $arrayRef1 = shift; > my @array1 = @$arrayRef1; > > into one expression?
my @array1 = @{+shift}; or my @array1 = @{shift()}; -- felix -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]