Got this simple while loop:
sleep 60; my $status; while(!(($status = get_value()) eq 'initializing')) { sleep 10; }
The $status is set to the value returned by the get_value() function. When the value returned is no longer 'initializing', I want the loop to terminate. However, the while loop never terminates. It keeps going even when get_value() returns 'ok' and I'm not sure why. I've tried a few different iterations of this code to no avail.
This simplified version code works as expected:
use strict; use warnings; my $count = 0; my $status; while (($status = gv() eq 'initializing')) { print 'stuck in loop' . "\n"; } sub gv { $count ++; return 'initializing' if $count < 5; return 'ok'; }
But when I try to duplicated this in my real world code, it doesn't work.
$PM = "Perl Monk's";
$MCF = "Most Clueless Friar Abbot Bishop Pontiff Deacon Curate Priest Vicar";
$nysus = $PM . ' ' . $MCF;
Click here if you love Perl Monks
In reply to While loop does not terminate by nysus
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |