RosettaCodeData/Task/Boolean-values/BBC-BASIC/boolean-values.basic

6 lines
176 B
Plaintext

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