huchister has asked for the wisdom of the Perl Monks concerning the following question:
my $self = bless( { 'rxml' => 'test', 'rxml_ob' => 'test2' } );
While I upgrade perl version from 5.8.8 to 5.10.1 gives me this error.my( $rxml, $ob ) = @{%$self}{qw/rxml rxml_ob/};
Disgard % hash sign.my( $rxml, $ob ) = @{$self}{qw/rxml rxml_ob/};
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Hash statement problem.
by Cristoforo (Curate) on Mar 11, 2013 at 19:53 UTC | |
|
Re: Hash statement problem.
by AnomalousMonk (Archbishop) on Mar 12, 2013 at 01:13 UTC | |
by huchister (Acolyte) on Mar 12, 2013 at 15:03 UTC | |
|
Re: Hash statement problem.
by kcott (Archbishop) on Mar 11, 2013 at 20:53 UTC | |
by Anonymous Monk on Mar 11, 2013 at 20:56 UTC | |
|
Re: Hash statement problem.
by Anonymous Monk on Mar 11, 2013 at 19:52 UTC | |
|
Re: Hash statement problem.
by blue_cowdawg (Monsignor) on Mar 11, 2013 at 20:32 UTC | |
|
Re: Hash statement problem.
by locked_user sundialsvc4 (Abbot) on Mar 11, 2013 at 21:39 UTC | |
by huchister (Acolyte) on Mar 12, 2013 at 14:58 UTC |