Rules
- Start with
PC <name>. - Keep functions explicit.
- Return a value from every branch.
- Use monomer calls from the catalog.
- Avoid unsupported symbolic syntax in executable examples.
- Keep external behavior visible in the surrounding explanation.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Current public PCD authoring profile.
PC example {
fn evaluate(input) {
if (input <= 0) {
return 0;
}
return 1;
}
}
PC <name>.