SIMULA 67
1 program
Added 2026-02-07T16:03:20Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Simula 67, Simula-67
Provenance: commit 496ea08fcc · authored 2026-02-07T17:04:04+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/simula-67Related languages
LLM-contributed programs
Point Class Example
Provenance: commit 496ea08fcc · authored 2026-02-07T17:04:04+01:00 · agent claude-code · model sonnet · WebSearch disabled
Begin
Class Point(x, y);
Real x, y;
Begin
Procedure Move(dx, dy);
Real dx, dy;
Begin
x := x + dx;
y := y + dy;
End;
Procedure Print;
Begin
OutText("Point at (");
OutFix(x, 2, 5);
OutText(", ");
OutFix(y, 2, 5);
OutText(")");
OutImage;
End;
End Point;
Ref(Point) p;
p :- New Point(3.0, 4.0);
p.Print;
p.Move(1.5, -2.0);
p.Print;
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.)