Boolean values: Difference between revisions

Content added Content deleted
mNo edit summary
Line 1,391: Line 1,391:
Newer implementations of the language may also support !! (exclusve or).
Newer implementations of the language may also support !! (exclusve or).
There is one unary boolean operator: ' (not).</p>
There is one unary boolean operator: ' (not).</p>

=={{header|Nanoquery}}==
<lang nanoquery>a = true
b = false
if a
println "a is true"
else if b
println "b is true"
end</lang>
{{out}}
<pre>a is true</pre>


=={{header|Neko}}==
=={{header|Neko}}==