SCM
1 program
Added 2026-03-05T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: SCM Scheme
Provenance: commit 53bcd8a34a · authored 2026-03-05T19:14:20+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
5 sources · pl_id:
pl/scmWikipedia 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 | Guy L. Steele Gerald Jay Sussman |
| First appeared | 1975 |
| Influenced by | ALGOL · Lisp · MDL |
| Homepage | https://www.scheme.org/ |
Extensions claimed by this language
2 claims. 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 | pygments | primary | 1.7M files |
.ss | pygments | secondary | 434.9K files |
Related languages
LLM-contributed programs
Towers of Hanoi
Provenance: commit 53bcd8a34a · authored 2026-03-05T19:14:20+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
;;; Towers of Hanoi in SCM (Scheme)
(define (hanoi n from to via)
(if (= n 0)
'()
(begin
(hanoi (- n 1) from via to)
(display (string-append "Move disk " (number->string n)
" from " (symbol->string from)
" to " (symbol->string to)))
(newline)
(hanoi (- n 1) via to from))))
(hanoi 4 'A 'C 'B)
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.)