Noah wrote:
>
> Is there a way to simplify the following to one line?
>
>
> ---
>
> my $value = $t1lsq{$interfaceName};
> $value = 4 if $value > 4;
I'm wondering why you want to do that?
Depending on your reasons, perhaps this would do?
my $value = $t1lsq{$interfaceName}; $value = 4 if $value > 4;
Rob
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/
