SimTalk

1 program Added 2026-03-06T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled Evidence Report issue View issues
Aliases: Plant Simulation Script
Provenance: commit d8d958326a · authored 2026-03-06T11:41:16+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

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

Related languages

SIMAN (0.27)SIMSCRIPT (0.27)Oblivion Script (0.24)Bitcoin Script (0.23)PlayScript (0.23)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit d8d958326a · authored 2026-03-06T11:41:16+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
code.spp · added: 2026-03-06T10:00:00Z
-- Print the first 12 Fibonacci numbers (SimTalk 2.0)
var a, b, temp: integer
var i: integer

a := 0
b := 1
for i := 1 to 12
  print a
  temp := a + b
  a := b
  b := temp
end

Contribute — propose a file extension

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