Review Points
- Blocked cases are explicit.
- Every branch returns.
- Branches return compatible result kinds.
- The final allowed path is visible.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
EVA conditional composition.
PC gate {
fn gate(value) {
if (value <= 0) {
return 0;
}
return 1;
}
}
