RETURNS 1 IF V IS ODD, 0 OTHERWISE
ACTION
The function ODD(V) returns 1 if V is odd, 0 otherwise.
V is an integer.
SYNTAX:
Result=ODD(V)
USE ERROR EXAMPLE
print odd(3)
print "Result = 1"
ODD()
ODD(V)
SEE ALSO
EVEN()