PL/360

1 program Added 2026-03-11T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit f7178f2e72 · authored 2026-03-11T21:57:16+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

4 sources · pl_id: pl/pl360
LLM (this repo) · 1PldbWikipediaWikidata · Q7119559

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsprocedural · imperative · structured
Typingstatic, strong
Designed byStanford University · Niklaus Wirth · Joseph W. Wells Jr · Edwin Satterthwaite Jr
First appeared1966
Influenced byALGOL · Executive Systems Problem Oriented Language (ESPOL)
Implemented inALGOL · then PL360

Related languages

PL360 (0.73)APL\360 (0.33)PL/0 (0.31)PL/M (0.27)PL/T (0.27)

LLM-contributed programs

Euclidean GCD (subtraction-based)

Provenance: commit f7178f2e72 · authored 2026-03-11T21:57:16+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.pl360 · added: 2026-03-11T10:00:00Z
COMMENT Euclidean algorithm (subtraction-based GCD) in PL/360;
COMMENT From: Wirth, N. (1968). PL/360, A Programming Language for the 360 Computers.;
COMMENT Journal of the ACM, 15(1), 37-74.;

PROCEDURE GCD(INTEGER M, N) INTEGER;
BEGIN
  WHILE M # N DO
    IF M > N THEN M := M - N
    ELSE N := N - M;
  GCD := M
END GCD;

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.)

Contribute — propose a file extension

Tell us where to find evidence about PL/360 (mapped to pl/pl360). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/PL/360/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← PL/0 PL/6 →