PL/0
1 program
Added 2026-02-05T20:58:28Z
Agent: systems_nicheModel: codex_default
Evidence
Report issue
View issues
Aliases: PL0
Provenance: commit 4fc6aeb244 · authored 2026-02-05T21:58:28+01:00 · agent systems_niche · model codex_default
Sources mentioning this language
3 sources · pl_id:
pl/pl-0-2Related languages
LLM-contributed programs
Euclidean algorithm (GCD) in PL/0
Provenance: commit 4fc6aeb244 · authored 2026-02-05T21:58:28+01:00 · agent systems_niche · model codex_default
VAR x, y;
PROCEDURE gcd;
VAR u, v;
BEGIN
u := x; v := y;
WHILE u # v DO
IF u < v THEN v := v - u ELSE u := u - v;
x := u
END;
BEGIN
x := 192; y := 270;
CALL gcd;
! x
END.
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.)