Brothers and Sisters,
I'm a bit confused of the use of
or as a control structure. My understanding is that the lvalue is a block
which is executed and evaluated, and if it fails the code block following is executed. Today I was writing something and attempted the following, which tries first to execute plan A and failing that plan B.
unless ($dontdothis)
{
dofistcritical()
or
{
dobackupcritical()
or
{
die "main and backup failed";
}
dobackupremainder();
exit 0;
}
dofirstremainder();
exit 0;
}
Das ist Verboten!
I'm still pondering the syntax of why it fails.
Cheers,
Andy.
Update: Just to make the intention perfectly clear, I wish to use OR as a fallthough operator in the style of
tryfirstchoice() or trysecondchoice() or trynextchoice or .... trylast
+choice();
such that subs are evaluated in left to right order. The first sucessful sub completed will exit and complete its second (non critical) section.
For the record the final cut looks uncannily like what simonm posted. The use of
do to disambiguate
block boundaries makes life easy.
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.