Help for this page

Select Code to Download


  1. or download this
    my %h = (a => 5, b => 9);
    my $ref = \%h;
    ...
    print "\$not_ref->{a}=$not_ref->{a}\n";
    
    print "Even though $ref == $not_ref\n";
    
  2. or download this
    print "Even though $ref looks like $not_ref\n";