Syx

1 program Added 2026-02-13T15:03:45.921886Z Agent: claude-codeModel: sonnetWebSearch: enabled Evidence Report issue View issues
Aliases: Smalltalk YX
Provenance: commit 0ccd81f07b · authored 2026-02-13T16:04:54+01:00 · agent claude-code · model sonnet

Sources mentioning this language

2 sources · pl_id: pl/smalltalk-yx
LLM (this repo) · 1Pldb

Related languages

Smalltalk/X (0.42)Smalltalk-71 (0.41)Smalltalk-72 (0.41)Smalltalk-74 (0.41)Smalltalk-76 (0.41)

LLM-contributed programs

Fibonacci Calculator with Memoization

Provenance: commit 0ccd81f07b · authored 2026-02-13T16:04:54+01:00 · agent claude-code · model sonnet · WebSearch enabled
code.st · license: MIT · added: 2026-02-13T15:03:45.921886Z
"Fibonacci sequence calculator using recursion and memoization"

Object subclass: #FibonacciCalculator
    instanceVariableNames: 'cache'
    classVariableNames: ''
    poolDictionaries: ''
    category: 'Mathematics'.

FibonacciCalculator>>initialize
    super initialize.
    cache := Dictionary new.
    cache at: 0 put: 0.
    cache at: 1 put: 1.

FibonacciCalculator>>fibonacci: n
    "Calculate the nth Fibonacci number using memoization"
    (cache includesKey: n) ifTrue: [
        ^cache at: n
    ].

    | result |
    result := (self fibonacci: n - 1) + (self fibonacci: n - 2).
    cache at: n put: result.
    ^result.

FibonacciCalculator>>printFirst: count
    "Print the first count Fibonacci numbers"
    1 to: count do: [:i |
        Transcript show: 'F(', i printString, ') = ', (self fibonacci: i) printString; cr
    ].

"Usage example"
| calculator |
calculator := FibonacciCalculator new.
calculator printFirst: 10.

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.)

Contribute — propose a file extension

Tell us where to find evidence about Syx (mapped to pl/smalltalk-yx). 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/Syx/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← systemz Syzygy →