-
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
babashka and Joker, implementations specifically designed for fast startup, comparable to e.g. Guile and interpreted Chicken.
-
Lumo and Planck (standalone Clojurescript environments, based on Node and on JavaScriptCore with some additional functionality to make it suitable for scripting, respectively), and Clojerl (Clojure implemented on BEAM). Startup times are comparable to e.g. Racket.
-
Python has, among other possibilities, ctypes (which just loads a DLL and lets you call functions on it at the ABI level (example: calling small clojure interpreter)), Cython (where you call C and C++ at the API level from a superset of Python; you can just put it in a Jupyter cell and the compiler will be called automatically), and cffi (which lets you switch between API and ABI mode at will and is suitable for a wide range of scenarios, from "I want to call C source code" to "I don't even have the source code"). I haven't seen anything comparable in any Lisp, let alone most of them. What am I missing?