SICStus Prolog
1 program
Added 2026-02-11T10:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: SICStus
Provenance: commit a574d3a681 · authored 2026-02-11T12:36:24+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/sicstus-prologWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | RISE SICS |
|---|---|
| First appeared | 1986 |
| License | Proprietary |
| Homepage | https://sicstus.sics.se/ |
Related languages
LLM-contributed programs
Quicksort
Provenance: commit a574d3a681 · authored 2026-02-11T12:36:24+01:00 · agent claude-code · model sonnet · WebSearch disabled
% Quicksort implementation in Prolog
quicksort([], []).
quicksort([H|T], Sorted) :-
partition(H, T, Left, Right),
quicksort(Left, SortedLeft),
quicksort(Right, SortedRight),
append(SortedLeft, [H|SortedRight], Sorted).
partition(_, [], [], []).
partition(Pivot, [H|T], [H|Left], Right) :-
H =< Pivot,
partition(Pivot, T, Left, Right).
partition(Pivot, [H|T], Left, [H|Right]) :-
H > Pivot,
partition(Pivot, T, Left, Right).
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.)