Skip to content

bool

Type

Boolean. Literals are true and false.

bool name = value;

None.

A value of type bool, emitted as boolean.

boolean

observable bool becomes BoolValue. ! emits not. There is no YES/NO.

bool isActive = true;
if (!isActive) {
return;
}

Emits:

local isActive: boolean = true
if not isActive then
return
end

operator-logic · observable