perl how can i use an operator while it's inside a variable ?
- by Ricky
Hey,
my question is for Perl lang.
i'm looking for a way to do this:
$a = "60"; $b = "< 80";
if ( $a $b ) { then .... }
while $b holds the operator.....
can i do that ?
maby with some other way ?
10x