- or download this
sub show_ref
{
...
print "Reference to: ", ref($ref), "\n";
print "Contents: ", pp($ref), "\n";
}
- or download this
my $commissions = $sales->{tuesday}{jim};
show_ref($commissions);
- or download this
14:11 >perl 879_SoPW.pl
Reference to: ARRAY
Contents: [3, 8]
14:11 >
- or download this
14:11 >perl 879_SoPW.pl
Reference to: HASH
Contents: { jim => [3, 8], mary => [5, 5] }
14:25 >