Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict; use warnings;
    ...
        -20, #for 20 cpu secs
        \%tests
    );
    
  2. or download this
    open(my $fh, "<", "24length_packed.data" ) or die $!;
    local $/ = undef;
    ...
        push @{ $hash{ $_->[0] } }, [ $_->[1], $_->[2] ]
         } unpack( '(a10a10a4)*', <$fh>),
    close $fh;