Describes the Boolean data type
A boolean value is a truth value, also known as a logical value, which can be either true or false. Boolean values are used with logical operators, usually in connection with program flow control using conditional statements.
<variable_name> as BoolFor example, the code below will display "Approved!":
isApproved as Bool
isApproved = true
if isApproved then
display "Approved!"
else
display "Rejected"
end