Modern Perl by chromatic a loose description of how experienced and effective Perl 5 programmers work....You can learn this too.#!/usr/bin/perl -- use strict; use warnings; use Data::Dump qw/ dd /; my %hash = ( 1,2 ); my $ref = \%hash; dd( $ref ); $ref->{alec}='smart'; dd( $ref ); __END__ { 1 => 2 } { 1 => 2, alec => "smart" }
It is reviewed and recommended by Perl Tutorial Hub
In reply to Re: Updating hash using it's reference ...
by Anonymous Monk
in thread Updating hash using it's reference ...
by karthikin2asic
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |