Boolean
A Boolean represents a value that can only be in one of two states: true or false.
let x be trueUsage
Booleans are useful for control flow.
let enabled be true
if enabled then
print "it's enabled!"
otherwise
print "it's disabled!"Logical operators (and, or, not) can be used to operate
on boolean values.
let sweet be true
let sour be false
print sweet and not sour # trueConstructor
Creates a new Boolean with the given value.
let a be new Boolean with just falseMethods
Returns "true" or "false".
Returns the boolean in JSON format.
print "hello world"