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

7 lines
217 B
Text

' BASIC256 used numbers to represent true and false
' values. Zero is false and anything else is true.
' The built in constants true and false exist
' and represent one and zero respectively.
print false
print true