Humbug

1 program Added 2025-10-22T13:22:54Z Model: anthropic/claude-3.5-sonnetTemp: 0.4 Evidence Report issue View issues
Aliases: hug
Provenance: commit 04da15c78d · authored 2025-10-22T15:22:54+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

Hugo (0.23)Hume (0.23)Humus (0.21)Huginn (0.20)Hugs (0.18)

LLM-contributed programs

Fibonacci sequence generator

Provenance: commit 04da15c78d · authored 2025-10-22T15:22:54+02:00 · model anthropic/claude-3.5-sonnet · Temp 0.4
code.hug · license: MIT · added: 2025-10-22T13:22:54Z
module fibonacci

fib(0, 0).
fib(1, 1).
fib(N, F) :-
    N > 1,
    N1 is N - 1,
    N2 is N - 2,
    fib(N1, F1),
    fib(N2, F2),
    F is F1 + F2.

fibs(Max, Fibs) :-
    findall(F, (between(0, Max, N), fib(N, F)), Fibs).

Contribute — propose a file extension

Tell us where to find evidence about Humbug (mapped to pl/humbug). 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/Humbug/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← humanhash-hash-function Hume →