Skip to content

Implementation Status

Tarn Burton edited this page May 3, 2020 · 10 revisions

The status of common-lisp-jupyter on various Lisp implementations is listed in the table below. If there is no entry under an OS for that implementation the status is currently unknown.

Implementation Linux MacOS Windows Notes
ABCL
ACL
CCL
CLASP See package notes below
CLISP
CMUCL MacOS requires 32bit ZeroMQ which is not in homebrew
ECL
LispWorks
MKCL
SBCL

CLASP notes

In order to allow usage of the iterate package the following lines need to be put into .clasprc

(setq eclector.readtable:*readtable* cl:*readtable*)

(defmethod eclector.readtable:syntax-type  ((readtable cl:readtable) char)
  (core:syntax-type readtable char))

(defmethod eclector.readtable:get-macro-character ((readtable cl:readtable) char)
  (cl:get-macro-character char readtable))
Clone this wiki locally