mlld
Version:
mlld: llm scripting language
19 lines (16 loc) • 389 B
Markdown
id: when-simple
title: When Simple
brief: Basic conditional with single condition
category: control-flow
parent: when
tags: [conditionals, branching]
related: [when-bare, when-first]
related-code: [interpreter/eval/when.ts, grammar/patterns/when.peggy]
updated: 2026-01-05
**Simple form:**
```mlld
when @isProd => show "Production mode"
when @score > 90 => show "Excellent!"
```