in reply to Re^3: handling erronous input
in thread handling erronous input
I prefer:
while ( ... ) { next if some-condition; some-code }
which not only saves a couple of (trivial I admit) lines of code, it reduces clutter and avoids an extra level of nesting for some-code.
|
|---|