Edinburgh IMP
1 program
Added 2026-02-13T10:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: IMP77, IMP72
Provenance: commit 6c33583217 · authored 2026-02-13T15:49:06+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/edinburgh-imp-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 |
|---|---|
| Typing | static, strong |
| Designed by | University of Edinburgh · Bratley · Whitfield · M. M. Barritt · David Rees · Peter D. Schofield · Roderick McLeod · Hamish Dewar · Peter D. Stephens · Peter Robertson |
| First appeared | 1966 |
| Influenced by | ALGOL 60 · Atlas Autocode |
| Implemented in | Atlas Autocode · IMP |
Related languages
LLM-contributed programs
Factorial Calculator
Provenance: commit 6c33583217 · authored 2026-02-13T15:49:06+01:00 · agent claude-code · model sonnet · WebSearch disabled
begin
integer n, result;
integer function factorial(integer x);
begin
if x <= 1 then
factorial := 1
else
factorial := x * factorial(x - 1)
end;
n := 5;
result := factorial(n);
printstring("Factorial of ");
printinteger(n);
printstring(" is ");
printinteger(result);
newline
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.)