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

6 lines
176 B
Text
Raw Permalink Normal View History

2013-04-10 16:19:29 -07: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