Name:
Anonymous
2011-06-05 6:10
http://clacklisp.org/
WSGI-like environment for Common Lisp. Opinions?
Name:
Anonymous
2011-06-05 13:07
They extensively use Python-style decorators. I'm not sure I like it.
@url GET "/hello/:name"
(defun hello (params)
(format nil "Hello, ~A" (getf params :name)))