Practical? Common Lisp on the JVM: A quick intro to ABCL for modern web apps

from blog Notes on software development, | ↗ original
In a ridiculous attempt to prove an internet wrong about the practicality of Lisp (Common Lisp specifically), I tried to get a simple (but realistic) web app running. After four days and a patch to ABCL I got something working. The code I had in mind would look something like this: (let* ((port 8080) (server (make-server port))) (route...