http://www.perlmonks.org?node_id=577160


in reply to Re^2: Making my own control flow structure
in thread Making my own control flow structure

ok, so how about this:
if ($condition) { &doAction; } else { print "doAction not executed due to a failure of $condition\n"; }
if you have a whole bunch of $conditions then you could easily pregenerate the codeblock. cool, dynamic code... !

Replies are listed 'Best First'.
Re^4: Making my own control flow structure
by Anonymous Monk on Oct 09, 2006 at 13:14 UTC
    I did discuss that in my reply. That solution is not enough, because the print statement is generated by the script writer, and therefore could be diffrent every time. I need a system where the output is generated automatically, so it is repeatable and auditable 100% of the time