Simula-67

1 program Added 2026-03-16T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Simula 67, SIMULA 67
Provenance: commit 51b7d3e320 · authored 2026-03-16T22:52:30+01:00 · agent claude-code · model claude-sonnet-4-6

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

Fibonacci Sequence

Provenance: commit 51b7d3e320 · authored 2026-03-16T22:52:30+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.sim · license: CC BY-SA 4.0 · added: 2026-03-16T10:00:00Z
BEGIN
   INTEGER PROCEDURE Fibonacci(n);
      INTEGER n;
   BEGIN
      IF n < 2 THEN
         Fibonacci := n
      ELSE
         Fibonacci := Fibonacci(n-1) + Fibonacci(n-2)
   END Fibonacci;

   INTEGER i;
   FOR i := 0 STEP 1 UNTIL 10 DO BEGIN
      OutInt(Fibonacci(i), 0);
      OutChar(' ')
   END;
   OutImage
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 I Simula67 →