You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Datatype for the Boolean values <b>true</b> and <b>false</b>. It is common to use <b>boolean</b> values with control statements to determine the flow of a program. The first time a variable is written, it must be declared with a statement expressing its datatype.
]]></description>
<syntax>
boolean <c>var</c>
boolean <c>var</c> = <c>booleanvalue</c>
</syntax>
<parameter>
<label>var</label>
<description><![CDATA[variable name referencing the value]]></description>
</parameter>
<parameter>
<label>booleanvalue</label>
<description><![CDATA[true or false]]></description>