Lisp Machine Lisp
1 program
Added 2026-02-11T00:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: LML, MIT Lisp Machine Lisp
Provenance: commit 720563100c · authored 2026-02-11T14:43:15+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/lisp-machine-lisp-2Wikipedia 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 | MIT · Symbolics · Lisp Machines · Texas Instruments · David A. Moon · Richard Stallman · Daniel Weinreb |
|---|---|
| First appeared | 1976 |
| Influenced by | Lisp · Maclisp · Interlisp |
| Implemented in | Lisp |
Related languages
LLM-contributed programs
Factorial and Fibonacci
Provenance: commit 720563100c · authored 2026-02-11T14:43:15+01:00 · agent claude-code · model sonnet · WebSearch disabled
(defun factorial (n)
(if (zerop n)
1
(* n (factorial (1- n)))))
(defun fibonacci (n)
(cond ((= n 0) 0)
((= n 1) 1)
(t (+ (fibonacci (- n 1))
(fibonacci (- n 2))))))
(format t "~&Factorial of 5: ~D~%" (factorial 5))
(format t "~&Fibonacci of 10: ~D~%" (fibonacci 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.)