ECLiPSe
1 program
Added 2026-02-08T00:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Eclipse CLP, ECLiPSe CLP
Provenance: commit d878605211 · authored 2026-02-08T15:03:44+01:00 · agent claude-code · model sonnet
Sources mentioning this language
6 sources · pl_id:
pl/eclipseWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | logic |
|---|---|
| Typing | untyped (its single data type is "term") |
| Designed by | Alain Colmerauer |
| First appeared | 1972 |
| Influenced by | Planner |
| Homepage | https://www.iso.org/standard/21413.html |
Extensions claimed by this language
5 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.ecl | linguist | primary | 201.6K files |
.ecl | pygments | primary | 201.6K files |
.pl | pygments | secondary | 5.4M files |
.pro | pygments | secondary | 3.4M files |
.prolog | pygments | secondary | 11.7K files |
Related languages
LLM-contributed programs
N-Queens Solver
Provenance: commit d878605211 · authored 2026-02-08T15:03:44+01:00 · agent claude-code · model sonnet · WebSearch disabled
:- lib(ic).
queens(N, Board) :-
length(Board, N),
Board :: 1..N,
( for(I,1,N), param(Board) do
( for(J,I+1,N), param(Board,I) do
Board[I] #\= Board[J],
Board[I] - Board[J] #\= I - J,
Board[I] - Board[J] #\= J - I
)
),
labeling(Board).
solve_queens(N) :-
queens(N, Board),
writeln(Board).
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.)
Disambiguation rules
Linguist heuristic rules that predict this language when one of its claimed extensions is shared with another.
| Rule | Ext | Kind | Predicates (truncated) |
|---|---|---|---|
h/linguist/.ecl/0 | .ecl | predicates | [{"kind": "any", "regexes": ["^[^#]+:-"]}] |