Help for this page

Select Code to Download


  1. or download this
    #! perl
    use strict;
    ...
    my  @array2 = qw(black orange white);
    my  %hash   = pairwise { $a => $b } @array1, @array2;
    dd \%hash;
    
  2. or download this
    21:57 >perl 977_SoPW.pl
    { blue => "orange", green => "white", red => "black" }
    
    21:57 >