Goaldi

1 program Added 2026-02-07T12:00:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit 58fcf6f7bc · authored 2026-02-07T12:34:57+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

Goat (0.27)Goby (0.17)Golo (0.17)Gobra (0.15)Gofer (0.15)

LLM-contributed programs

Fibonacci Sequence Generator

Provenance: commit 58fcf6f7bc · authored 2026-02-07T12:34:57+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.gd · added: 2026-02-07T12:00:00Z
# Fibonacci sequence generator in Goaldi
procedure main()
    every write(fib(1 to 20))
end

procedure fib(n)
    local a, b, c
    a := 0
    b := 1
    every 1 to n do {
        c := a + b
        a := b
        b := c
    }
    return a
end

Contribute — propose a file extension

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