Help for this page

Select Code to Download


  1. or download this
    for my $n (0..100) {
       $n /= 100;
    
       # do something with a number between 0.00 and 1.00 
    }
    
  2. or download this
    for my $n (437 .. 1287) {
       $n /= 1000;
    
       # do something with a number between .437 and 1.287
    }