Help for this page

Select Code to Download


  1. or download this
    my $num_chars = 0;
    <>;
    ...
        $num_chars += tr/ACGT/ACGT/;
    }
    print "$num_chars\n";
    
  2. or download this
    my @num_chars = ();
    my $i = -1;
    ...
    foreach ( @num_chars ) {
        print "$_\n";
    }