Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
This simplified version code works as expected:

Please mark your updates as such: It is uncool to update a node in a way that renders replies confusing or meaningless.

But when I try to duplicated this in my real world code, it doesn't work.

Then one of the lines you deleted when going from your original program to your simplified version were the cause of the problem, and not the code you've posted here. Personally I'd probably start with looking at the return values of get_value() by unrolling the while's condition like so:

use warnings; use strict; use Data::Dump; my $cnt; sub get_value { $cnt++ < 10 ? 'initializing' : 'ok' } my $status; #while( !( ($status = get_value()) eq 'initializing' ) ) { while (1) { dd $status = get_value(); last if $status eq 'initializing'; print "X" } print "Y\n";

Update: "Disregard. This was a problem in the return value from get_value(), not the while loop test." - yep ;-)


In reply to Re: While loop does not terminate by haukex
in thread While loop does not terminate by nysus

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (3)
As of 2024-04-20 01:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found