> For the complete documentation index, see [llms.txt](https://docs.cheddar.vihan.org/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cheddar.vihan.org/docs/literals/bool.md).

# Boolean

A boolean is a value representing a `true` or `false` value. A boolean is **not a variable**, meaning it cannot be treated like a property.

Syntax for booleans is either `true` or `false`.

```java
 true
 false
```
