Help for this page

Select Code to Download


  1. or download this
         my $foo = {};
    
         $foo{x} = "Bar";     # Auto-dereference
         $foo->{x} = "Bar";   # Manual dereference
    
  2. or download this
         $foo->{y}->{z} = "Zoinks";
    
         print "$foo->{y}{z}"; # Perl5 Auto-dereference