Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    
    print @{ @{ $h{'word3'} }[0] }[0], "\n";
    
  2. or download this
    print @{ @{ $h{'word3'} }[0] }[0]->[0], "\n"; # prints "1"
    print @{ @{ $h{'word3'} }[0] }[0]->[1], "\n"; # prints "3"