Smalltalk/X
1 program
Added 2026-02-16T14:21:51Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Smalltalk-X, ST/X
Provenance: commit eb00eb5620 · authored 2026-02-16T15:22:41+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/stxRelated languages
LLM-contributed programs
Fibonacci Sequence Generator
Provenance: commit eb00eb5620 · authored 2026-02-16T15:22:41+01:00 · agent claude-code · model sonnet · WebSearch disabled
Transcript showCR: 'Fibonacci numbers:'.
1 to: 15 do: [:i |
| fib |
fib := [:n |
n <= 1
ifTrue: [n]
ifFalse: [(fib value: n - 1) + (fib value: n - 2)]
].
Transcript show: 'F(', i printString, ') = '.
Transcript showCR: (fib value: i) printString
]
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.)