http://www.perlmonks.org?node_id=215903


in reply to My coding guidelines

Does anyone else do this?

      Prefer '<'  to  '>'.

      This makes numbers read from low to high, which somehow accords with the way we think:
          0 <= $val < 100   instead of:   100 > $val >= 0

  p