Help for this page

Select Code to Download


  1. or download this
    for (my $i = 0; $i < 100; $i += 0.1) {
       say $i;
    }
    
  2. or download this
    ...
    99.7999999999986
    99.8999999999986
    99.9999999999986
    
  3. or download this
    for (my $_ = 0*10; $_ < 100*10; ++$_) {
       my $i = $_/10;
       say $i;
    }
    
  4. or download this
    ...
    99.7
    99.8
    99.9
    
  5. or download this
    for (0*10..100*10) {
       my $i = $_/10;
       say $i;
    }
    
  6. or download this
    map $_/10, 0*10..100*10