Boolean values: Difference between revisions

Replace println() with print(); replace output "syntaxhighlight" tag with "pre" tag
(Replace println() with print(); replace output "syntaxhighlight" tag with "pre" tag)
Line 947:
assert True.not() == ~True == False;
 
console.printlnprint($"0==1 = {0==1}");
console.printlnprint($"!False = {!False}");
}
}
</syntaxhighlight>
 
{{out}}
Output:
<pre>
<syntaxhighlight>
0==1 = False
!False = True
</pre>
</syntaxhighlight>
 
=={{header|EGL}}==
162

edits