in reply to Re: How to declare arrays and scalars together?
in thread How to declare arrays and scalars together?

That declares them and initialises them to empty or undef. He wants to initialise $var to zero at the same time.

Replies are listed 'Best First'.
Re^3: How to declare arrays and scalars together?
by frozenwithjoy (Priest) on Jun 18, 2012 at 05:40 UTC

    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;