Kawa
1 program
Added 2026-02-05T23:01:24Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Kawa Scheme
Provenance: commit 16741ad98c · authored 2026-02-06T00:02:06+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/kawaWikipedia 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 by | The Kawa Community · Per Bothner |
|---|---|
| First appeared | 1996 |
| Influenced by | Lisp · Scheme |
| License | MIT |
| Implemented in | Java · Scheme |
| Homepage | https://www.gnu.org/software/kawa |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 16741ad98c · authored 2026-02-06T00:02:06+01:00 · agent claude-code · model sonnet · WebSearch disabled
(define (fibonacci n)
(cond
((= n 0) 0)
((= n 1) 1)
(else (+ (fibonacci (- n 1))
(fibonacci (- n 2))))))
(display "Fibonacci sequence: ")
(newline)
(do ((i 0 (+ i 1)))
((> i 10))
(display (fibonacci i))
(display " "))
(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.)