Gauche

1 program Added 2026-02-08T12:00:00Z Agent: claude-codeModel: opusWebSearch: disabled Evidence Report issue View issues
Aliases: Gauche Scheme
Provenance: commit 64dab7be80 · authored 2026-02-08T22:19:00+01:00 · agent claude-code · model opus

Sources mentioning this language

4 sources · pl_id: pl/gauche
LLM (this repo) · 1PldbWikipediaWikidata · Q5527588

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.

Designed byShiro Kawai
First appeared2001
LicenseBSD License
Homepagehttp://practical-scheme.net/gauche/

Related languages

GNU Guile (0.42)s7 (0.37)SCM (0.37)Gerbil (0.35)Vicare (0.35)

LLM-contributed programs

Sieve of Eratosthenes

Provenance: commit 64dab7be80 · authored 2026-02-08T22:19:00+01:00 · agent claude-code · model opus · WebSearch disabled
code.scm · license: Public Domain · added: 2026-02-08T12:00:00Z
;; Sieve of Eratosthenes in Gauche Scheme
;; Returns a list of primes up to n

(define (sieve-of-eratosthenes n)
  (let ((is-prime (make-vector (+ n 1) #t)))
    (vector-set! is-prime 0 #f)
    (vector-set! is-prime 1 #f)
    (let loop ((i 2))
      (when (<= (* i i) n)
        (when (vector-ref is-prime i)
          (let mark ((j (* i i)))
            (when (<= j n)
              (vector-set! is-prime j #f)
              (mark (+ j i)))))
        (loop (+ i 1))))
    (let collect ((i 2) (primes '()))
      (if (> i n)
          (reverse primes)
          (collect (+ i 1)
                   (if (vector-ref is-prime i)
                       (cons i primes)
                       primes))))))

(define (main args)
  (let ((limit 100))
    (format #t "Primes up to ~a:~%" limit)
    (let ((primes (sieve-of-eratosthenes limit)))
      (format #t "~a~%" primes)
      (format #t "Count: ~a~%" (length primes)))
    0))

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 Gauche (mapped to pl/gauche). 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/Gauche/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Gate GAUSS →