MAL
1 program
Added 2026-02-06T11:57:33Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Make A Lisp
Provenance: commit f56d314474 · authored 2026-02-06T12:58:14+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/malRelated languages
LLM-contributed programs
Factorial Function
Provenance: commit f56d314474 · authored 2026-02-06T12:58:14+01:00 · agent claude-code · model sonnet · WebSearch disabled
(def! fact
(fn* (n)
(if (<= n 1)
1
(* n (fact (- n 1))))))
(prn (fact 5))
(prn (fact 10))
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.)