Boolean values: Difference between revisions

Content added Content deleted
(→‎Insitux: inclusion)
imported>J7M
(add example for SmallBASIC)
Line 551: Line 551:
if not(2 < 1) then print "2 not < 1"
if not(2 < 1) then print "2 not < 1"
if not(1 = 0) then print "1 not = 0"</syntaxhighlight>
if not(1 = 0) then print "1 not = 0"</syntaxhighlight>

==={{header|SmallBASIC}}===
<syntaxhighlight lang="basic">
a = true
b = false
</syntaxhighlight>


==={{header|smart BASIC}}===
==={{header|smart BASIC}}===