But a redo (just like next and last is just
a glorified goto.
I consider this statement blatently false and missleading.
- goto FOO
causes is designed to cause
execution to jump to the
lable FOO anywhere in your script (provided no
initialization would be neccessary to get there)
- redo FOO
will only work
if the is designed to cause execution
to jump to label FOO if it exists
at some surrounding loop block. (allthough it
will work w/warning if the label applies to some
dynamicly surrounding loop)
This typo generates an error...
perl -le 'BAR: print 1; BAZ: for (2..3) {print; redo BAR; }'
This typo causes an infinite loop...
perl -le 'BAR: print 1; BAZ: for (2..3) {print; goto BAR; }'
(Updated to be less pedantic... the point is, goto
is for arbitrary jumping, redo is for controlled jumping to
the begining of a loop. Could you live w/o redo if you had
goto? yes. Does that mean you should just use goto and
not bother with redo? no.)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.