#Booleans_The bool type with exactly two values, true and false._The `bool` type has exactly two values: `true` and `false`.
```wclenabled = true
strict = false
```##In expressionsBooleans are produced by every comparison and combined with the logical operators `&&`, `||`, and `!`. See [Operators](../references/fact_operators.md) for the full set.
```wclready = !pending && enabled
oversize = width > 100u32 || height > 100u32
```##Related-[Operators](../references/fact_operators.md)-[if / else](../references/concept_if_else.md)[← Back to SKILL.md](../SKILL.md)