in reply to Re: use slack;
in thread use slack;
Aside from this one exception employed for a well-tested condition (for a huge optimization):
the (now 400 line) script uses strict. Since i know how to play by the rules why not also start to break them, since it seems to pay off so well when done carefully?if($in){ foreach(@actions){ unless($_ eq /one|/){ if($in eq $_){ no strict "refs"; &$_()}}}}
UPDATE: I responded too quickly, as autark explained in the chatterbox, this is the perfect solution. I get to do what I want without breaking strict with:
Joy!if($in){ foreach(@actions){ unless($_ eq /one|/){ if($in eq $_){ do{\&{$_}}->()}}}}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: use slack;
by autark (Friar) on Dec 21, 2000 at 07:45 UTC |