in reply to Re^2: Radoteur
in thread Radoteur
Your loop labels are not required here (and rarely ever are). You can remove them in both the loops, and the last and next calls. For example, replace:
WORD_ITER:foreach(...)
with:
foreach(...)
and:
next WORD_ITER; last WORD_ITER;
with just:
next; last;
You can do this in both your while and for statements/blocks.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Radoteur
by QuillMeantTen (Friar) on Oct 20, 2015 at 08:57 UTC | |
by BrowserUk (Patriarch) on Oct 20, 2015 at 09:08 UTC | |
by QuillMeantTen (Friar) on Oct 20, 2015 at 12:18 UTC | |
by Athanasius (Cardinal) on Oct 21, 2015 at 09:06 UTC |