MCL

1 program Added 2026-02-27T13:15:44Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Macintosh Common Lisp, Coral Common Lisp
Provenance: commit 538c956dca · authored 2026-02-27T14:16:13+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

3 sources · pl_id: pl/macintosh-common-lisp-2
LLM (this repo) · 1WikipediaWikidata · Q4043546

Related languages

Common Lisp (0.36)Corman Lisp (0.36)Clasp (0.34)CLISP (0.32)Allegro CL (0.30)

LLM-contributed programs

Quicksort

Provenance: commit 538c956dca · authored 2026-02-27T14:16:13+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.lisp · license: GNU FDL · added: 2026-02-27T13:15:44Z
(defun quicksort (lst)
  (if (null lst)
      '()
      (let ((pivot (car lst))
            (rest (cdr lst)))
        (append
          (quicksort (remove-if-not #'(lambda (x) (< x pivot)) rest))
          (list pivot)
          (quicksort (remove-if-not #'(lambda (x) (>= x pivot)) rest))))))

(format t "Sorted: ~a~%" (quicksort '(3 1 4 1 5 9 2 6 5 3 5)))

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.)

Contribute — propose a file extension

Tell us where to find evidence about MCL (mapped to pl/macintosh-common-lisp-2). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/MCL/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← mckeeman-form mcleyvier-command-language →