Comment by rootnod3
I am working on my own Lisp-like language (cliche, I know). Goal is a hybrid. Syntax is a bit more Clojure inspired, but want to emulate the interactivity of SBCL once I am done.
And the other goal is minimal dependencies. The only bootstrapping stage is a very very small core in Common Lisp + FSet but could also be replaced with other languages, and then using that subset to bootstrap the rest.
There is absolutely zero claim to be highly performant, it is more of an educational experience.
All of it is done via literate programming in org-mode. So far it's working pretty well, but will have to see how that approach works if the project grows.
OOI how does the org-mode dev work? Are you tangling and then compiling in a hot-reload loop?