Help for this page

Select Code to Download


  1. or download this
    for (my $i10=0; $i10<=100; $i10++) {
       my $i = $i10 / 10;
       print "$i, \n";
    }
    
  2. or download this
    for (0..100) {
       my $i = $_ / 10;
       print "$i, \n";
    }