Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    }
    
    print "Completed in " . Time::HiRes::tv_interval ($startTime) . "\n";
    
  2. or download this
    use warnings;
    use strict;
    ...
      $str .= (qw(A C G T))[rand 4] for 1..$howlong;
      print "$str\n";
    }