in reply to Checking whether a value is between two limits: Useless use of private variable in void context
is somewhat like( $value => $lower_limit )
which is essentially( $value , $lower_limit )
making $value irrelevant. You don't need the fat comma => but the greater or equal operator >= .( $lower_limit )
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Checking whether a value is between two limits: Useless use of private variable in void context
by Bloehdian (Beadle) on Dec 11, 2019 at 18:59 UTC |