Humus

1 program Added 2026-02-26T00:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled Evidence Report issue View issues
Aliases: —
Provenance: commit 66e94d8323 · authored 2026-02-26T14:37:20+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

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

Related languages

Hume (0.30)Humbug (0.21)Huff (0.18)Hugo (0.18)Husk (0.18)

LLM-contributed programs

Fibonacci

Provenance: commit 66e94d8323 · authored 2026-02-26T14:37:20+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
code.hum · added: 2026-02-26T00:00:00Z
# Fibonacci example
DEF fib_beh(m) AS \(cust, n).[
  CASE greater(n, m) OF
    TRUE : [
      SEND (k_fib, sub(n, 1)) TO SELF
      SEND (k_fib, sub(n, 2)) TO SELF
      CREATE k_fib WITH \a.[
        BECOME \b.[
          SEND add(a, b) TO cust
        ]
      ]
    ]
    _ : [
      SEND n TO cust
    ]
  END
]
CREATE fib WITH fib_beh(1)
SEND (println, 6) TO fib

Contribute — propose a file extension

Tell us where to find evidence about Humus (mapped to pl/humus). 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/Humus/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Humo HUNTER →