AProlog

1 program Added 2026-03-12T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Lambda Prolog, lambdaProlog, λProlog
Provenance: commit bd28a20102 · authored 2026-03-12T03:42:23+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

5 sources · pl_id: pl/lambda-prolog
LLM (this repo) · 1PldbWikipediaRosettacodeWikidata · Q3594646

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmslogic
Typingstrongly typed
Designed byDale Miller · Gopalan Nadathur
First appeared1987
Influenced byProlog
LicenseGNU General Public License v3
Homepagehttp://www.lix.polytechnique.fr/Labo/Dale.Miller/lProlog/

Related languages

Lambda Prolog (0.87)LambdaProlog (0.87)Elpi (0.29)Tau Prolog (0.26)Trealla (0.26)

LLM-contributed programs

List Append and Reverse

Provenance: commit bd28a20102 · authored 2026-03-12T03:42:23+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.mod · added: 2026-03-12T10:00:00Z
module lists.

type app   list A -> list A -> list A -> o.
type rev   list A -> list A -> o.

app nil L L.
app (X :: L1) L2 (X :: L3) :- app L1 L2 L3.

rev nil nil.
rev (X :: L) R :- rev L RL, app RL (X :: nil) R.

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 AProlog (mapped to pl/lambda-prolog). 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/AProlog/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← aprol apse →