I'll take a closer look at this, Kent.
Currently We do not have a true single bit Boolean or a built-in true/false equates.
Boolean will translate to sys and the true condition usually returns -1 and false is always zero.
Any zero value number, including floats is logically evaluated as false, otherwise it is true.
Oxygen will also evaluate empty strings and null strings to false (0) and all other strings to true. (-1)
Charles