Simula I

1 program Added 2026-02-11T11:29:40Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: SIMULA I, Simula 1
Provenance: commit 2f833ffbab · authored 2026-02-11T12:30:40+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

Simula (0.39)Simula67 (0.35)SIMULA 67 (0.33)Simula-67 (0.33)Simulink (0.28)

LLM-contributed programs

Simple Queuing System Simulation

Provenance: commit 2f833ffbab · authored 2026-02-11T12:30:40+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.sim · added: 2026-02-11T11:29:40Z
BEGIN
   COMMENT Simple queuing system simulation;
   INTEGER customers, served;
   REAL arrival_time, service_time, total_wait;
   
   customers := 0;
   served := 0;
   total_wait := 0.0;
   
   arrival_time := 0.0;
   service_time := 5.0;
   
   WHILE arrival_time < 100.0 DO
   BEGIN
      customers := customers + 1;
      total_wait := total_wait + (service_time * served);
      arrival_time := arrival_time + 10.0;
      
      IF customers > 0 THEN
      BEGIN
         customers := customers - 1;
         served := served + 1;
      END;
   END;
   
   OUTTEXT("Total customers served: ");
   OUTINT(served, 5);
   OUTIMAGE;
   OUTTEXT("Average wait time: ");
   OUTFIX(total_wait / served, 3, 10);
   OUTIMAGE;
END

Contribute — propose a file extension

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