Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 1 KB

COMMON_LISP.md

File metadata and controls

24 lines (17 loc) · 1 KB

Common Lisp

Woo is a fast non-blocking HTTP server built on top of libev. Although Woo is written in Common Lisp, it aims to be the fastest web server written in any programming language.

How fast?

woo


Clack is a web application environment for Common Lisp inspired by Python’s WSGI and Ruby’s Rack.

Example:

(defvar *handler*
    (clack:clackup
      (lambda (env)
        (declare (ignore env))
        '(200 (:content-type "text/plain") ("Hello, Clack!")))))

Mezzano. An operating system written in Common Lisp

mezzano