PPL
1 program
Added 2026-02-06T14:14:16Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Polymorphic Programming Language
Provenance: commit 2cb56f0e15 · authored 2026-02-06T15:15:12+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/polymorphic-programming-language-2Related languages
LLM-contributed programs
Factorial Function
Provenance: commit 2cb56f0e15 · authored 2026-02-06T15:15:12+01:00 · agent claude-code · model sonnet · WebSearch disabled
FACTORIAL: PROC(N);
IF N = 0 THEN RETURN 1;
ELSE RETURN N * FACTORIAL(N - 1);
END FACTORIAL;
PRINT(FACTORIAL(5));
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.)