Scheme48
1 program
Added 2026-03-05T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: S48
Provenance: commit 82c4c60558 · authored 2026-03-05T14:35:18+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
2 sources · pl_id:
pl/scheme48Related languages
LLM-contributed programs
Towers of Hanoi
Provenance: commit 82c4c60558 · authored 2026-03-05T14:35:18+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
(define (hanoi n from to via)
(when (> n 0)
(hanoi (- n 1) from via to)
(display "Move disk ")
(display n)
(display " from ")
(display from)
(display " to ")
(display to)
(newline)
(hanoi (- n 1) via to from)))
(hanoi 3 '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.)