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)
LLM (this repo) · 1

Related languages

Cuis (0.33)Cuis Smalltalk (0.33)Syx (0.33)Little Smalltalk (0.32)Pharo (0.32)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit 51f940ef5c · authored 2026-02-10T00:09:11+01:00 · agent claude-code · model opus · WebSearch disabled
code.st · license: GFDL · added: 2026-02-09T23:08:19Z
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.
]

Contribute — propose a file extension

Tell us where to find evidence about GNU Smalltalk (mapped to pl/gnu_smalltalk). 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/GNU Smalltalk/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← GNU Prolog gnu-e →