# if: making a choice [Syntax and values](README.md) ```text if temperature > 25: say "Warm" else: say "Cool" ``` The condition must evaluate to `Boolean`. Pliro has no truthiness conversion. The `else` clause is optional. There is no `elif` or one-line `else if` form. Nest another `if` in the `else` block: ```text if score >= 100: say "Gold" else: if score >= 50: say "Silver" else: say "Bronze" ``` ## Example ```pliro # language: en let score = 12 if score >= 10: say "A" else: say "B" ``` ## Related entries [Syntax and values](README.md) · [Built-ins](../builtins/README.md) · [Programming guides](../guides/README.md)