Booleans

The bool type with exactly two values, true and false.

The bool type has exactly two values: true and false.

wcl
enabled = true
strict  = false

§ 1In expressions

Booleans are produced by every comparison and combined with the logical operators &&, ||, and !. See Operators for the full set.

wcl
ready    = !pending && enabled
oversize = width > 100u32 || height > 100u32