cl-blogapp

This is a simple blog application in common lisp using the framework Weblocks.

I wrote this as a simple tutorial to weblocks, so it has virtually no functionnality and you probably don't want to use it to power your blog. I don't follow the latest weblocks but it should work with the version of 2008-06-08. If it doesn't work with the latest version, feel free to complain to me on the weblocks mailing-list.

You can find a git repository, some more information, and a tarball at github.com.

The tutorial basically consists in these four lisp files which are in the tarball as well as the resulting application. With each step, we add more functionality to the application.

Evan Monroig

(let ((first-name "evan")
      (last-name "monroig")
      (provider "gmail")
      (dom "com"))
  (format nil "~a.~a@~a.~a" first-name last-name provider dom))