in reply to Re^2: How to declare arrays and scalars together?
in thread How to declare arrays and scalars together?
Ah yes. I spaced over that part. Too much traveling this weekend! Thanks.
Note to OP: I recommend using two lines to do what you want to do. For example...
my ( @arr1, @arr2, @arr3 ); my $var = 0;
is quite a bit more readable than:
my ( $var, @arr1, @arr2, @arr3 ) = 0;
|
|---|