Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl
    use strict;
    use warnings;
    ...
              'two',
              '2.003'
            ];
    
  2. or download this
    my %hash;
    while ( my ( $key, $val ) = splice( @$in, 0, 2 ) ) {
      push @{ $hash{$key} }, $val;
    }