Odd and even numbers? in Developer Help
Is there a proc to check if a number is odd or even? If so could you link me to it in the reference, if not, how would I go about creating one?
proc/IsOdd(n) return n%2proc/IsEven(n) return !(n%2)
Lummox JR