http://qs321.pair.com?node_id=11109990


in reply to Checking whether a value is between two limits: Useless use of private variable in void context

( $value => $lower_limit )
is somewhat like
( $value , $lower_limit )
which is essentially
( $lower_limit )
making $value irrelevant. You don't need the fat comma => but the greater or equal operator >= .

  • Comment on Re: Checking whether a value is between two limits: Useless use of private variable in void context
  • Select or Download Code

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

    Oh my dear! Nasty typo.

    Hm, at least I learned new terms: "fat comma" and "fancy comma"

    THX to all