# true — the Boolean true literal [Syntax and values](README.md) ## Behavior and details The lowercase keyword true denotes the Boolean true value. It is not Text "true" or Number 1. Conditions require Booleans, and display conversion prints the canonical text true in either source locale. It is reserved and cannot be a user identifier. ## Example ```pliro # language: en let ready = true if ready: say text(ready) ``` ## Related entries [Syntax and values](README.md) · [Built-ins](../builtins/README.md) · [Programming guides](../guides/README.md)