On 12/12/06, Dukelow, Don <[EMAIL PROTECTED]> wrote:

I'm trying to declare a zero size hash so a sub function can populate it and
be see by all other sub's.

my %loginHash();

Maybe you mean this?

   my %loginHash = ();

But every new variable (which is what 'my' is declaring) starts out
empty, so all you really need is this:

   my %loginHash;

Hope this helps!

--Tom Phoenix
Stonehenge Perl Training

--
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