Help for this page

Select Code to Download


  1. or download this
    my @groups = ();
    my $pred = -1;
    my $j = 0;
    ...
            $groups[$j] += $+[0] - $-[0];
            $pred = $+[0];
            }
    
  2. or download this
    qr{
                               # start of full pattern
            \(                  # match an opening parenthesis
    ...
            \)                  # match a closing parenthesis
                               # end of  full pattern
    }x;
    
  3. or download this
    #use strict;
    use warnings;
    use Time::HiRes;
    ...
    }
    
    print Time::HiRes::time() - $start, $/;