So, the article is harsh on CL: YMMV. Also, your goal may vary: I want to build and ship (web) applications, and so far Julia doesn't look attractive to me (at all). Super fast incremental development, build a standalone binary and deploy on my VPS or ship an Electron window? done. Problem(s) solved, let's focus on my app please.<p>The author doesn't mention a few helpful things:<p>- editor support: <a href="https://lispcookbook.github.io/cl-cookbook/editor-support.html" rel="nofollow">https://lispcookbook.github.io/cl-cookbook/editor-support.ht...</a> Emacs is first class, Portacle is an Emacs easy to install (3 clicks), Vim, Atom support is (was?) very good, Sublime Text seems good (it has an interactive debugger with stack frame inspection), VSCode sees good work underway, the Alive extension is new, usable but hard to install yet, LispWorks is proprietary and is more like Smalltalk, with many graphical windows to inspect your running application, Geany has simple and experimental support, Eclipse has basic support, Lem is a general purpose editor written in CL, it is Emacs-like and poorely documented :( we have Jupyter notebooks and simpler terminal-based interactive REPLs: cl-repl is like ipython.<p>So, one could complain five years ago easily about the lack of editor support, know your complaint should be more evolved than a Emacs/Vim dichotomy.<p>- package managers: Quicklisp is great, very slick and the ecosystem is very stable. When/if you encounter its limitations, you can use: Ultralisp, a Quicklisp distribution that ships every 5 minutes (but it doesn't check that all packages load correctly together), Qlot is used for project-local dependencies, where you pin each one precisely, CLPM is a new package manager that fixes some (all?) Quicklisp limitations<p>> [unicode, threading, GC…] All of these features are left to be implemented by third-party libraries<p>this leads to think that no implementation implements unicode or threading support O_o<p>> most of the language proper is not generic<p>mention generic-cl? <a href="https://github.com/alex-gutev/generic-cl/" rel="nofollow">https://github.com/alex-gutev/generic-cl/</a> (tried quickly, not intensively)<p>Documentation: fair points, but improving etc. Example of a new doc generator: <a href="https://40ants.com/doc/" rel="nofollow">https://40ants.com/doc/</a><p>Also I'd welcome a discussion about Coalton (Haskell-like type system on top of CL).