SIMSCRIPT II.5

1 program Added 2026-02-13T13:40:19Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: SIMSCRIPT 2.5, SIMSCRIPT II
Provenance: commit 0b6eca03ba · authored 2026-02-13T14:41:18+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

SIMSCRIPT (0.45)NimScript (0.26)LScript (0.25)SGScript (0.24)Vimscript (0.23)

LLM-contributed programs

Simple Queuing Model

Provenance: commit 0b6eca03ba · authored 2026-02-13T14:41:18+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.sim · added: 2026-02-13T13:40:19Z
PREAMBLE
  DEFINE CUSTOMER AS AN ENTITY
  DEFINE QUEUE AS A SET OF CUSTOMER
  TEMPORARY ENTITIES
    CUSTOMER
  END
  DEFINE ARRIVAL.TIME AS A REAL VARIABLE
  DEFINE SERVICE.TIME AS A REAL VARIABLE
END

MAIN
  CREATE EVERY ARRIVAL GENERATING CUSTOMER
  START SIMULATION
END

ROUTINE ARRIVAL
  CREATE A CUSTOMER
  FILE CUSTOMER IN QUEUE
  IF QUEUE IS EMPTY
    ACTIVATE A SERVER NOW
  ALWAYS
END

ROUTINE SERVER
  WHILE QUEUE IS NOT EMPTY
  DO
    REMOVE FIRST CUSTOMER FROM QUEUE
    WAIT SERVICE.TIME HOURS
  LOOP
END

Contribute — propose a file extension

Tell us where to find evidence about SIMSCRIPT II.5 (mapped to pl/simscript_ii_5). 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/SIMSCRIPT II.5/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← SIMSCRIPT SimTalk →