Bloehdian has asked for the wisdom of the Perl Monks concerning the following question:
I simply want to check, whether a numeric value is between an upper and a lower limit using the following one liner:
perl -we 'use strict; my $value=1; my $lower_limit = 0; my $upper_limi +t = 2; if ( ( $value <= $upper_limit ) && ( $value => $lower_limit ) +) { print "the value is in the range!\n"}' Useless use of private variable in void context at -e line 1.
Currently it seems that I am kind of blind, since I cannot see what is wrong with the condition. I guess here is somebody out who has better eyes. ;-)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Checking whether a value is between two limits: Useless use of private variable in void context
by Fletch (Bishop) on Dec 11, 2019 at 18:51 UTC | |
|
Re: Checking whether a value is between two limits: Useless use of private variable in void context
by haukex (Archbishop) on Dec 11, 2019 at 18:56 UTC | |
|
Re: Checking whether a value is between two limits: Useless use of private variable in void context
by Perlbotics (Archbishop) on Dec 11, 2019 at 18:54 UTC | |
by Bloehdian (Beadle) on Dec 11, 2019 at 18:59 UTC |