Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
        $hash_1{$array_temp[0]} = $array_temp[1];
    }
    
  2. or download this
    @array_2 = (1,2,3,500,505)
    %hash_1 = (
    ...
        500 => 2,
        505 => 1,
    )