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)
Related languages
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
-- 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