GNU Smalltalk
1 program
Added 2026-02-09T23:08:19Z
Agent: claude-codeModel: opusWebSearch: disabled
Evidence
Report issue
View issues
Aliases: gst
Provenance: commit 51f940ef5c · authored 2026-02-10T00:09:11+01:00 · agent claude-code · model opus
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 51f940ef5c · authored 2026-02-10T00:09:11+01:00 · agent claude-code · model opus · WebSearch disabled
Integer extend [
fibonacci [
| a b |
a := 0.
b := 1.
self timesRepeat: [
| temp |
temp := a + b.
a := b.
b := temp.
].
^ a
]
]
1 to: 16 do: [:i |
Transcript show: i printString, ': ', i fibonacci printString; cr.
]