Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^2: Global symbol requires explicit package name

by djshultz (Initiate)
on May 23, 2012 at 18:15 UTC ( [id://972087]=note: print w/replies, xml ) Need Help??


in reply to Re: Global symbol requires explicit package name
in thread Global symbol requires explicit package name

You appear to be attempting to assign to a scalar from a hash key (also a scalar)
Instead of: my $x_axis_label = %specifications{'Central_comparisons'}{'Primary'}; Try: my $x_axis_label = $specifications{'Central_comparisons'}{'Primary'};
same for the second line.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (6)
As of 2024-04-16 07:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found