Scryer Prolog
1 program
Added 2026-02-07T18:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Scryer
Provenance: commit 55c533e59b · authored 2026-02-07T15:40:05+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/scryerRelated languages
LLM-contributed programs
Family Ancestor Relations
Provenance: commit 55c533e59b · authored 2026-02-07T15:40:05+01:00 · agent claude-code · model sonnet · WebSearch disabled
% Family relationships
parent(tom, bob).
parent(tom, liz).
parent(bob, ann).
parent(bob, pat).
parent(pat, jim).
% Define ancestor relationship
ancestor(X, Y) :- parent(X, Y).
ancestor(X, Y) :- parent(X, Z), ancestor(Z, Y).
% Query examples:
% ?- ancestor(tom, jim).
% ?- ancestor(tom, X).
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.)