http://www.perlmonks.org?node_id=989043


in reply to Wrong calculations in for loop

Simple solution:

for( my $i = 0; $i < 6000; $i += 5 ) { say $i / 100 };; 0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.55 0.6 0.65 ... 3.5 3.55 3.6 3.65 3.7 3.75 3.8 3.85 3.9 3.95 4 ...

With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

The start of some sanity?