in reply to Re^2: GOTO or not GOTO
in thread GOTO or not GOTO
while ( uninteresting() ) {}; : : sub uninteresting { # I assume $file and $max_tries are globals my $url = ask_url(); my $status = getstore($url, $file); return ( $status == 200 && !-s $file && --$max_tries > 0 ); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: GOTO or not GOTO
by JavaFan (Canon) on Jan 27, 2009 at 12:16 UTC |