diff --git a/ANDROID-TERMUX.md b/ANDROID-TERMUX.md index 2e5afb5..a23ee54 100644 --- a/ANDROID-TERMUX.md +++ b/ANDROID-TERMUX.md @@ -60,6 +60,16 @@ Add to ~/.emacs.d/init.el start emacs M-x slime + +Install the UltraLisp distro for recent software for quicklisp: + +``` +(ql-dist:install-dist "http://dist.ultralisp.org/" + :prompt nil) +(ql:update-all-dists) ; run newest updates +``` + +Of course install CLOG an CLOG Builder for a rich GUI Lisp IDE ``` (ql:quickload :clog) ``` @@ -70,4 +80,4 @@ A failure will occur for sqlite on sbcl, choose {use-value} ``` (ql:quickload :clog/tools) (clog-tools:clog-builder) -``` \ No newline at end of file +``` diff --git a/MACOS.md b/MACOS.md index 79f4a28..9e83b72 100644 --- a/MACOS.md +++ b/MACOS.md @@ -41,12 +41,21 @@ sbcl --eval '(ql:quickload :quicklisp-slime-helper)' --quit 8. You can now start emacs graphically or if did option 2 from terminal using emacs (and if desire terminal version use emacs -nw) and then use M-x slime -9. Install using slime CLOG: +9. Install the UltraLisp distro for recent software for quicklisp: + ``` - (ql:quickload :clog) - (clog:run-demo 1) +(ql-dist:install-dist "http://dist.ultralisp.org/" + :prompt nil) +(ql:update-all-dists) ; run newest updates ``` +10. Of course install CLOG an CLOG Builder for a rich GUI Lisp IDE +``` + (ql:quickload :clog/tools) + (clog-tools:clog-builder) +``` + + Tip: If use emacs graphically, you may find it easier to set the apple command key to also act as a Meta key: diff --git a/WINDOWS.md b/WINDOWS.md index 0d80a9c..7f7ac4f 100644 --- a/WINDOWS.md +++ b/WINDOWS.md @@ -1,5 +1,8 @@ ## Installing Common Lisp on Windows 64bit from Scratch +(For a simple non-emacs install see: + https://github.com/rabbibotton/clog-win64-ez/releases) + 1. Download and install rho-emacs: https://gchristensen.github.io/rho-emacs/ @@ -73,11 +76,18 @@ ``` Run Slime - M-x slime -7. Install CLOG: -8. +8. Install the UltraLisp distro for recent software for quicklisp: + ``` - (ql:quickload :clog) - (clog:run-demo 1) +(ql-dist:install-dist "http://dist.ultralisp.org/" + :prompt nil) +(ql:update-all-dists) ; run newest updates +``` + +9. Of course install CLOG an CLOG Builder for a rich GUI Lisp IDE +``` + (ql:quickload :clog/tools) + (clog-tools:clog-builder) ``` [Learn about CLOG](README.md)