Ok Monks,
Try this on for size. I am working with code that in a nutshell has a part that looks like this:
while ($i < $entry){
$i = $entry (2/3);
}
etc.... Whereas $i is being iterated earlier in the script. The part I don't get is the fact that my script will go through the iteration one last time when the $i var becomes equivalent to the $entry var. Hence when
while(($i < $entry) && ($i ne $entry){
$i = $entry(2/3);
}
is ran, i get the output I am looking for. Can you please help explain this perl paradigm to me?
Tradez
"Never underestimate the predicability of stupidity"
- Bullet Tooth Tony, Snatch (2001)