INT_TO_BOOL(A)
Converts a integer to a boolean
Boolean INT_TO_BOOL(Integer A)
A - Integer value
Boolean value.
Returns true if A is nonzero
> PRINT INT_TO_BOOL(3)
TRUE
> PRINT INT_TO_BOOL(0)
FALSE