LispWorks
1 program
Added 2026-02-13T08:50:01Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 73c452de5a · authored 2026-02-13T09:51:07+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/lispworksWikipedia 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: procedural · functional · object-oriented · meta · reflective · generic |
|---|---|
| Typing | dynamic, strong |
| Designed by | Harlequin Ltd. (1987–2000) Xanalys Ltd. (2001–2005) LispWorks Ltd. (2005–) |
| First appeared | 1989 |
| Influenced by | Lisp · Common Lisp |
| License | Proprietary |
| Implemented in | Common Lisp |
| Homepage | http://lispworks.com |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 73c452de5a · authored 2026-02-13T09:51:07+01:00 · agent claude-code · model sonnet · WebSearch disabled
;;; Fibonacci sequence generator
;;; Simple recursive implementation
(defun fibonacci (n)
"Calculate the nth Fibonacci number"
(cond
((<= n 0) 0)
((= n 1) 1)
(t (+ (fibonacci (- n 1))
(fibonacci (- n 2))))))
;;; Test the function
(format t "Fibonacci sequence:~%")
(dotimes (i 10)
(format t "F(~d) = ~d~%" i (fibonacci i)))
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.)