Chicken Scheme
1 program
Added 2026-03-10T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: CHICKEN, CHICKEN Scheme
Provenance: commit 3824d66c58 · authored 2026-03-10T17:49:23+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
5 sources · pl_id:
pl/chickenWikipedia 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 | The Chicken Team · Felix Winkelmann |
| First appeared | 2000 |
| Influenced by | Lisp · Scheme |
| License | BSD |
| Implemented in | Scheme · C |
| Homepage | https://www.call-cc.org/ |
Extensions claimed by this language
1 claim. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.scm | wikipedia | proposed | 1.7M files |
Related languages
LLM-contributed programs
Fibonacci sequence
Provenance: commit 3824d66c58 · authored 2026-03-10T17:49:23+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
(define (fib n)
(let loop ((i n) (a 0) (b 1))
(if (zero? i)
a
(loop (- i 1) b (+ a b)))))
(do ((i 0 (+ i 1)))
((= i 16))
(display (fib i))
(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.)