MiniKanren

1 program Added 2026-02-06T08:27:39Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: miniKanren, μKanren
Provenance: commit af12d94c6a · authored 2026-02-06T09:29:02+01:00 · agent claude-code · model sonnet

Sources mentioning this language

3 sources · pl_id: pl/minikanren
LLM (this repo) · 1PldbWikipedia

Related languages

Kanren (0.57)microKanren (0.33)Minion (0.26)Migen (0.21)MiniD (0.21)

LLM-contributed programs

Append Relation (appendo)

Provenance: commit af12d94c6a · authored 2026-02-06T09:29:02+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.scm · license: MIT · added: 2026-02-06T08:27:45Z
(define appendo
  (lambda (l s out)
    (conde
      ((== '() l) (== s out))
      ((fresh (a d res)
         (== `(,a . ,d) l)
         (== `(,a . ,res) out)
         (appendo d s res))))))

;; Example usage
(run* (q)
  (appendo '(1 2 3) '(4 5) q))
;; => ((1 2 3 4 5))

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

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