

This directory contains the example files shown in the allegrocache demo on the web.
Instructions for use:

[1] Please put all the files in one directory
[2] Start up a Lisp. Every Lisp is ok.
[3] :cd in Lisp to the directory where you put the code
[4-Windows]
Open the file "demo.cl" in the IDE. 
Evaluate every form in the file from top to bottom, one step at the time. An easy
way to do this is to go in the editor, and do an <ALT><ENTER> before every form.
[4-Emacs]
Open the file "demo.cl" in an emacs buffer. Make sure there is a *common-lisp* buffer 
visible at the same time.
Evaluate every form in the file from top to bottom, one step at the time.
An easy way to do this is to include the emacs macro in your .emacs file.
This macro defines F8 to copy the code at the cursor in the listener and execute
that form and then jump to the next form.

    
;; f8 to execute one form at a time...

(global-set-key [f8] [?\C-\M-f ?\C-\M-b ?\C- ?\C-\M-f ?\M-w ?\C-x ?o ?\M-> ?\C-y ?\C-x ?\C-x ?\C-\M-q ?\C-x ?\C-x ?\C-m ?\C-x ?o ?\C-\M-f ?\C-\M-b])