I have simple function with condition which should return number 1, but instead returns nil. ````lua function clamp(x, min, max) return x < min and min or (x > max and max or x) end local x = clamp(0, 1, 25) print(x) --nil ````