in reply to passing array to a sub
If for some reason everything's fine, there's a couple other ways to try:
or using references:sub example { my ( $scalar1, $scalar2, @info1 ) = @_; ... }
&example( $scalar1, $scalar2, \@info1 ) = @_; ... sub example { my $scalar1 = shift; my $scalar2 = shift; my $arrref = shift; my @info1 = @$arrref; ... }
-----------------------------------------------------
Dr. Michael K. Neylon - mneylon-pm@masemware.com
||
"You've left the lens cap of your mind on again, Pinky" - The Brain
It's not what you know, but knowing how to find it if you don't know that's important
|
|---|