Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^6: C-style for loop

by GrandFather (Saint)
on Nov 15, 2008 at 23:08 UTC ( [id://723859]=note: print w/replies, xml ) Need Help??

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%       --
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://723859]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (7)
As of 2024-03-29 08:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found