oniric has asked for the wisdom of the Perl Monks concerning the following question:
Then this code should be called when needed and maybe 'eval'ed as a sub reference. I'm not totally satisfied by this solution however, first because of security problems, I don't want my user to possibly launch system programs (ok, they won't, but they could..) second because I think eval could take some time and slow down my system. What do you think? I'm seeking your wisdom.if($_ > 10){return 1} elsif($_>3){return 2 } else {return 1 }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Very simple rules implementation
by Eliya (Vicar) on May 17, 2012 at 22:14 UTC | |
by SuicideJunkie (Vicar) on May 18, 2012 at 14:47 UTC | |
|
Re: Very simple rules implementation
by Anonymous Monk on May 18, 2012 at 03:18 UTC | |
by oniric (Initiate) on May 18, 2012 at 07:56 UTC |