boolean
- comment
Booleans might be
true
orfalse
, "common.j" variablesTRUE
andFALSE
were added to allow you to use them, but it is not a good idea to do so. Usingtrue
is faster than getting a value of variableTRUE
.Comparision expresions
==
,<=
,<
,>
,>=
,!=
returnboolean
.Statements
if
,elseif
andexitwhen
takeboolean
as argument.- Source
- builtin-types.j
- Source code
type boolean extends void