Skip to main content
Version: 9.0.2

Boolean

The type boolean (#boolean) is the type of the values true and false. Both nil and false make a condition false; any other value makes it true.

Example

local a = false
local b = true
print(a, b)