Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl 
    
    ...
    print "The first and second keys: hash slice ==> \n", 
    Dumper( @hash{qw(1 2)} );
    print "Just the third key: \n", Dumper( $hash{3} );