I think that construct is still legal in Perl 5.8.x but you may be falling foul of
use strict;. I may be wrong but I suspect that your
$h contains a string which is the name of another variable thus setting up a soft reference. The following have been run under Perl 5.8.4
Firstly with no use strict; or use warnings;
#use strict;
#use warnings;
$h = "fred";
%$h = (name => "Jim", age => 34);
print $h->{name}, "\n";
print $fred{age}, "\n";
produces
Jim
34
Switching on strict like this
use strict;
use warnings;
our %fred;
my $h = "fred";
%$h = (name => "Jim", age => 34);
print $h->{name}, "\n";
print $fred{age}, "\n";
produces
Can't use string ("fred") as a HASH ref while "strict refs" in use at
+pbeck2 line 8.
because use strict; objects to soft references. Only by switching strict off for the duration of a code block can you use soft references.
use strict;
use warnings;
our %fred;
my $h = "fred";
{
no strict q(refs);
%$h = (name => "Jim", age => 34);
print $h->{name}, "\n";
}
print $fred{age}, "\n";
produces
Jim
34
I hope this clarifies what might be happening with your "illegal" code.
Cheers,
JohnGG
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.