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-67
LLM (this repo) · 1Pldb

Related languages

Simula-67 (1.00)Simula67 (0.71)Simula (0.69)Simula I (0.33)Simulink (0.25)

LLM-contributed programs

Point Class Example

Provenance: commit 496ea08fcc · authored 2026-02-07T17:04:04+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.sim · added: 2026-02-07T16:03:20Z
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.)

Contribute — propose a file extension

Tell us where to find evidence about SIMULA 67 (mapped to pl/simula-67). 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/SIMULA 67/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Simula Simula I →