RosettaCodeData/Task/Boolean-values/BBC-BASIC/boolean-values.basic
2023-07-01 13:44:08 -04:00

5 lines
176 B
Text

REM BBC BASIC uses integers to represent Booleans; the keywords
REM FALSE and TRUE equate to 0 and -1 (&FFFFFFFF) respectively:
PRINT FALSE
PRINT TRUE