Help for this page

Select Code to Download


  1. or download this
        for (my $i = $BIG; $i > 0; $i--) {
    
    becomes
    
        for (my $i = 0; $i <= $BIG; $i++) {
    
  2. or download this
    #!/usr/bin/perl --
    use strict;
    ...
    C-style  65.0/s      30%       --     -13%     -25%
    C-styleF 74.7/s      50%      15%       --     -13%
    P-styleF 86.2/s      73%      33%      15%       --