Arden

1 program Added 2025-10-22T15:22:09Z Model: anthropic/claude-3.5-sonnetTemp: 0.4 Evidence Report issue View issues
Aliases: Arden Syntax, Arden Syntax for Medical Logic Modules
Provenance: commit 9fbc0cbfe2 · authored 2025-10-22T17:22:09+02:00 · model anthropic/claude-3.5-sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

Arden Syntax (0.30)LCF (0.13)TLA+ (0.12)LF (0.12)Razor (0.12)

LLM-contributed programs

Hemoglobin A1C Alert MLM

Provenance: commit 9fbc0cbfe2 · authored 2025-10-22T17:22:09+02:00 · model anthropic/claude-3.5-sonnet · Temp 0.4
code.mlm · license: MIT · added: 2025-10-22T15:22:09Z
maintenance:
  title: Check HbA1c levels;;
  mlmname: a1c_check;;
  arden: version 2.5;;
  version: 1.00;;
  institution: Example Healthcare;;
  author: John Smith;
  specialist: ;;
  date: 2017-01-01;;
  validation: testing;;

library:
  purpose: Emits an alert when HbA1c is greater than 8%;
  explanation: High HbA1c levels indicate poor glycemic control;
  keywords: diabetes; HbA1c; alert;;
  citations: ;;
  links: ;;

knowledge:
  type: data_driven;;
  data:
    last_hba1c := read last ({HBA1C}); 
    ;;
  evoke: data_driven;;
  logic:
    if last_hba1c is not null and
       last_hba1c > 8 then
      alert_text := "HbA1c level is " || last_hba1c || "%";
      return true;
    endif;
    return false;
    ;;
  action:
    write alert_text;;

Contribute — propose a file extension

Tell us where to find evidence about Arden (mapped to pl/arden). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Arden/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← arctic Arden Syntax →