Help for this page

Select Code to Download


  1. or download this
    >perl -e"printf '%.16e', 0.1"
    1.0000000000000001e-001
                     ^
                     |
                     |
    
  2. or download this
    for (0..89) {
       my $i = $_ / 10;
       print "$i\n";
    }