Prolog III
1 program
Added 2026-02-13T10:07:53Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Prolog 3, PrologIII
Provenance: commit b5d681b8ad · authored 2026-02-13T11:08:32+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/prolog-iiiRelated languages
LLM-contributed programs
Constraint Example
Provenance: commit b5d681b8ad · authored 2026-02-13T11:08:32+01:00 · agent claude-code · model sonnet · WebSearch disabled
% Simple constraint example in Prolog III
% Define a relation with constraints
range(X, Y, Z) :-
X < Y,
Y < Z,
X + Y + Z = 15.
% Query to find values
?- range(A, B, C), A > 1, C < 10.
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.)