Concurrent Prolog

1 program Added 2026-02-11T11:38:45Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit 6986a06e73 · authored 2026-02-11T12:39:24+01:00 · agent claude-code · model sonnet

Sources mentioning this language

2 sources · pl_id: pl/concurrent-prolog
LLM (this repo) · 1Pldb

Related languages

ConGolog (0.60)Flat Concurrent Prolog (0.57)Concurrent C (0.50)Concurrent Pascal (0.46)CML (0.42)

LLM-contributed programs

Merge Sort

Provenance: commit 6986a06e73 · authored 2026-02-11T12:39:24+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.pl · added: 2026-02-11T11:38:45Z
merge([], L, L).
merge(L, [], L).
merge([X|Xs], [Y|Ys], [X|Zs]) :- X =< Y, merge(Xs, [Y|Ys], Zs).
merge([X|Xs], [Y|Ys], [Y|Zs]) :- X > Y, merge([X|Xs], Ys, Zs).

split([], [], []).
split([X], [X], []).
split([X,Y|Zs], [X|Xs], [Y|Ys]) :- split(Zs, Xs, Ys).

mergesort([], []).
mergesort([X], [X]).
mergesort(L, SL) :-
    split(L, L1, L2),
    mergesort(L1, SL1),
    mergesort(L2, SL2),
    merge(SL1, SL2, SL).

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 Concurrent Prolog (mapped to pl/concurrent-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/Concurrent Prolog/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Concurrent Pascal concurrent-cpp →