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

6 lines
176 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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