7 lines
217 B
Text
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
|