BOOL_TO_FLOAT(A)
Converts a boolean to a float (0.0 or 1.0)
Float BOOL_TO_FLOAT(Boolean A)
A - Boolean value
Float value. (0.0 or 1.0)
> PRINT BOOL_TO_FLOAT(TRUE)
1.000000
> PRINT BOOL_TO_FLOAT(FALSE)
0.000000