GemStone/S

1 program Added 2026-03-06T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: GemStone
Provenance: commit a775ec9f0b · authored 2026-03-06T11:56:12+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

Topaz (0.35)Overtone (0.20)Gobstones (0.19)Cone (0.18)Gentee (0.16)

LLM-contributed programs

Fibonacci sequence

Provenance: commit a775ec9f0b · authored 2026-03-06T11:56:12+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.gs · added: 2026-03-06T10:00:00Z
| fibonacci |
fibonacci := [:n |
    | a b temp |
    a := 0.
    b := 1.
    n timesRepeat: [
        temp := b.
        b := a + b.
        a := temp.
    ].
    a
].

Transcript showCr: 'Fibonacci sequence:'.
0 to: 15 do: [:i |
    Transcript showCr: 'fib(' , i printString , ') = ' , (fibonacci value: i) printString.
].

Contribute — propose a file extension

Tell us where to find evidence about GemStone/S (mapped to pl/gemstone_s). 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/GemStone-S/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← GEMROOTD gemtext →