On Monday, 16 December 2013 at 21:47:35 UTC, Brad Anderson wrote:
if (val >= 3 && val <= 10)
if (3 <= val && val <= 10) Pretty clear.
On Monday, 16 December 2013 at 21:47:35 UTC, Brad Anderson wrote:
if (val >= 3 && val <= 10)
if (3 <= val && val <= 10) Pretty clear.