Help for this page

Select Code to Download


  1. or download this
    my $first_counter = 0;
    my $second_counter = 0;
    ...
    
    print "First counter: $first_counter\n";
    print "Second counter: $second_counter\n";
    
  2. or download this
    my @real_count = (0,0,0,0);
    my $sequence = "GGGGGGGAGAAAAAAAAAAAAAAAGAAGGA";
    ...
    foreach (@real_count) {
        print "$_\n";
    }