Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Complicated Hash Construction.

by pg (Canon)
on Dec 29, 2002 at 04:33 UTC ( [id://222849]=note: print w/replies, xml ) Need Help??


in reply to Complicated Hash Construction.

You can declare an entity, but not a member of an entity. This is what the syntax error is about. In your bad case, you tried to declare my @hash{@keyarray}, which is an element of an entity.

It is NOT about the fact that you combined a declaration with an assignment.

This is fine:
my $a = 1;
and this is not fine:
my $a[1];
This is also no good:
my @a; # this is okay my $a[1];# no good

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://222849]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (4)
As of 2024-04-19 05:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found