4 lines
79 B
Plaintext
4 lines
79 B
Plaintext
function inrange(value, min, max)
|
|
return value >= min and value <= max
|
|
end
|