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