Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl
    use strict;
    ...
    {
    print "$array[$_]=>$_", "\n";
    }
    
  2. or download this
    #! /usr/bin/perl
    use strict;
    ...
    {
    print "$hash{$_}=>$_", "\n";
    }
    
  3. or download this
    [sid@nucleix scope]$ time perl hash.pl > A
    
    ...
    real    0m0.091s
    user    0m0.086s
    sys     0m0.005s