Gambit Scheme

1 program Added 2026-03-12T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Gambit, Gambit-C
Provenance: commit bb0f5f1b16 · authored 2026-03-12T01:12:17+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

3 sources · pl_id: pl/gambit
LLM (this repo) · 1WikipediaWikidata · Q5519637

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsmulti-paradigm: functional · imperative · meta
Typingdynamic, latent, strong
Designed byMarc Feeley
First appeared1988
Influenced byLisp · Scheme
LicenseLGPL 2.1, Apache 2.0
Homepagehttp://gambitscheme.org

Related languages

Gambit (1.00)Gauche (0.35)GNU Guile (0.26)MIT Scheme (0.26)Gerbil (0.24)

LLM-contributed programs

Sieve of Eratosthenes

Provenance: commit bb0f5f1b16 · authored 2026-03-12T01:12:17+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.scm · license: Public Domain · added: 2026-03-12T10:00:00Z
;; Sieve of Eratosthenes in Gambit Scheme
;; Finds all prime numbers up to a given limit

(define (sieve limit)
  (let ((composite (make-vector (+ limit 1) #f)))
    (let loop ((i 2) (primes '()))
      (cond
        ((> i limit)
         (reverse primes))
        ((vector-ref composite i)
         (loop (+ i 1) primes))
        (else
         (let mark ((j (* i i)))
           (when (<= j limit)
             (vector-set! composite j #t)
             (mark (+ j i))))
         (loop (+ i 1) (cons i primes)))))))

(define primes-to-50 (sieve 50))
(display "Primes up to 50: ")
(display primes-to-50)
(newline)

(display "Count: ")
(display (length primes-to-50))
(newline)

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 Gambit Scheme (mapped to pl/gambit). 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/Gambit Scheme/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Gambit game →