Combined Programming Language
1 program
Added 2026-02-27T00:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: CPL
Provenance: commit a4bd13bddc · authored 2026-02-27T13:19:07+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
5 sources · pl_id:
pl/cplWikipedia 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 | multi-paradigm: procedural · imperative · structured · functional |
|---|---|
| Designed by | Christopher Strachey et al |
| First appeared | 1963 |
| Influenced by | ALGOL 60 |
Related languages
LLM-contributed programs
Factorial and GCD
Provenance: commit a4bd13bddc · authored 2026-02-27T13:19:07+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
rec routine Fac (integer n) ≡
if n ≤ 1 then 1 else n × Fac(n − 1)
rec routine Gcd (integer m, n) ≡
if n = 0 then m else Gcd(n, m rem n)
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.)