RosettaCodeData/Task/Boolean-values/PowerBASIC/boolean-values.basic

6 lines
140 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
DIM x AS LONG
x = ISTRUE(1 = 1) ' returns -1
x = ISTRUE(1 = 0) ' returns 0
x = ISFALSE(1 = 1) ' returns 0
x = ISFALSE(1 = 0) ' returns -1