Help for this page

Select Code to Download


  1. or download this
      my $hash_ref = {
      a => 1 ,
    ...
      
      print "$$hash_ref{a}\n" ;
      print "$$hash_ref{b}\n" ;
    
  2. or download this
      my $hash_ref = {
      a => 1 ,
    ...
    
      print "$hash{a}\n" ;
      print "$hash{b}\n" ;