Returns TRUE if the number is odd.
odd? number
number - The number argument. (must be: number char date money time)
Returns TRUE only if the argument is an odd integer value. If the argument is a decimal, only its integer portion is examined.
print odd? 3 true
print odd? 100 false
print odd? 0 false
even? - Returns TRUE if the number is even.