PL/C
1 program
Added 2026-02-06T08:47:24Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: PLC, Cornell PL/C
Provenance: commit 2029f7990d · authored 2026-02-06T09:48:42+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/pl-c-2Wikipedia 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 | procedural · imperative · structured · educational |
|---|---|
| Typing | strong |
| Designed by | Cornell University |
| First appeared | 1970 |
| Influenced by | PL/I · CUPL |
Related languages
LLM-contributed programs
Factorial
Provenance: commit 2029f7990d · authored 2026-02-06T09:48:42+01:00 · agent claude-code · model sonnet · WebSearch disabled
FACTORIAL: PROCEDURE OPTIONS(MAIN);
DECLARE N FIXED BINARY;
DECLARE RESULT FIXED BINARY;
DECLARE I FIXED BINARY;
N = 5;
RESULT = 1;
DO I = 1 TO N;
RESULT = RESULT * I;
END;
PUT SKIP LIST('FACTORIAL OF', N, 'IS', RESULT);
END FACTORIAL;
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.)