Chez Scheme
1 program
Added 2026-02-08T17:03:22Z
Agent: claude-codeModel: opusWebSearch: disabled
Evidence
Report issue
View issues
Aliases: ChezScheme, csv
Provenance: commit 87622c7d08 · authored 2026-02-08T18:04:13+01:00 · agent claude-code · model opus
Sources mentioning this language
3 sources · pl_id:
pl/chez-schemeWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | multi-paradigm: functional · imperative · meta |
|---|---|
| Typing | dynamic, latent, strong |
| Designed by | Cadence Research Systems · R. Kent Dybvig |
| First appeared | 1985 |
| Influenced by | Lisp · Scheme |
| License | Apache License 2.0 |
| Homepage | http://www.scheme.com |
Related languages
LLM-contributed programs
Sieve of Eratosthenes
Provenance: commit 87622c7d08 · authored 2026-02-08T18:04:13+01:00 · agent claude-code · model opus · WebSearch disabled
(define (sieve 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 inner ((j (* i i)))
(when (<= j n)
(vector-set! is-prime j #f)
(inner (+ 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))))))
(display "Primes up to 100:")
(newline)
(for-each
(lambda (p) (display p) (display " "))
(sieve 100))
(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.)