Embeddable Common Lisp
1 program
Added 2026-02-28T11:12:52Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: ECL
Provenance: commit 7945dc1c6b · authored 2026-02-28T12:13:12+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
9 sources · pl_id:
pl/eclWikipedia 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 | declarative · structured · data-centric |
|---|---|
| Typing | static, strong, safe |
| Designed by | HPCC Systems® · LexisNexis Risk Solutions |
| First appeared | 2000 |
| Influenced by | Prolog · Pascal · SQL · Snobol4 · C++ · Clarion |
| Homepage | http://hpccsystems.com/ |
Extensions claimed by this language
3 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 |
.eclxml | linguist | secondary | 479 files |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 7945dc1c6b · authored 2026-02-28T12:13:12+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
;; Fibonacci sequence in Embeddable Common Lisp (ECL)
(defun fibonacci (n)
(if (< n 2)
n
(+ (fibonacci (- n 1))
(fibonacci (- n 2)))))
(defun print-fibs (limit)
(loop for i from 0 to limit
do (format t "fib(~a) = ~a~%" i (fibonacci i))))
(print-fibs 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.)
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/1 | .ecl | predicates | [{"kind": "any", "regexes": [":="]}] |