Recommended for beginners
- Peter Seibel's Practical Common Lisp (see also Practical Common Lisp on cliki)
- Learn X in Y minutes (Lisp). A good precursor to an introductory book like Practical Common Lisp (below).
- Common Lisp "The Tutorial" Series - Setting up Lisp + Lisp Tutorial for Programmers + CLOG Tutorials
- A Road to Common Lisp
- Lisp in Small Parts.
- Lisp Tutorial: Learning Lisp Fast.
- LispTutor Jr is an online tutorial with interactive exercises to test your knowledge and understanding.
- ELM-ART is an interactive and adaptive Web-based Lisp tutorial, itself written in Common Lisp, developed by Prof. Gerhard Weber of the University of Freiburg. Tutorial available in English and German. Type in a unique user name and password: no pre-registration step required. (Home page last changed: 2006)
- Common Lisp: A Gentle Introduction to Symbolic Computation by David S. Touretzky. Assumes no programming prerequisite but does assume you have a working Lisp implementation setup.
- Casting SPELs in Lisp -- A Comic Book by Conrad Barski, M.D. Quick interactive intro to Lisp, including macros (aka SPELs), using an interactive adventure game example. Last updated 2008. A prequel to his book, Land Of Lisp (2010).
- David B. Lamkins' Successful Lisp book
- Prepare your Lisp environment(s). How to set up a Common Lisp implementation and IDE.
- Rainer Joswig's Lisp on the Raspberry Pi and other ARM based Platforms: How to set up a Common Lisp Clozure implementation on a multitude of ARM based platforms such as Raspberry Pi, ODROID and hackberry.
- COMMON LISP: An Interactive Approach, by Stuart C. Shapiro
- DataMiningTools Lisp slides are a set of slides introducing aspects of Lisp programming.
Further reading
- The Common Lisp Cookbook
- Slides for the ``Tutorial on Good Lisp Programming Style'' by Peter Norvig and Kent Pitman at the Lisp Users and Vendors Conference, August 10, 1993
- Heinrich Taube's Lisp Style Tips quickly covers the major points of style for efficient Lisp use for beginners.
- Pascal Costanza's Highly Opinionated Guide to Lisp
- Common Lisp: A Tutorial on Conditions and Restarts
- Exception handling - the Common Lisp way
- CLOS Guide
- Using Common Lisp REPL tools for development and debugging.
- Lisp for the Web (See also Lisp for the Web Part II which expands on the original.)
- Common LISP Hints, by Geoffrey J. Gordon (CMUCL but also for other implementations).
- Hash Table Syntax in Common Lisp - reader macro and pretty printer tutorial
- Reader Macros in Common Lisp
- A Tutorial For Creating and Publishing Open Source Lisp Software (pdf), by Robert Smith
- cl-torrents tutorial, an extensive tutorial covering web scraping, project creation, parsing of command line arguments, building executables, continuous integration, unit tests, etc.
University course material
- Lisp and elements of style is a twelve-lecture course written by Nick Levine for delivery to undergraduates at Anglia Polytechnic University. It covers most introductory aspects of the language (apart from CLOS) and includes exercises, suggestions for practical sessions, two longer assignments and even an exam with model answers. Online and free. (Courses from 1999 and 2000. Last update in 2001)
- Four lisp tutorials for the CS310 class taught by Philip Fong at Simon Fraser University. The tutorials consider basic lisp programming, functional programming, data abstraction, and imperative programming. Each has exercises, source code, and solutions. (No course dates; web server says page was last updated 2005)
- Traité de Programmation en Common Lisp (in French), by Robert Strandh and Irène Durand. (2001) (old link http://dept-info.labri.u-bordeaux.fr/%7Estrandh/Teaching/Programmation-Symbolique/Common/Book/HTML/programmation.html is dangling).
- Introduction à la programmation en Common Lisp.
- Introdução à Linguagem Lisp. Tutorial by João Cachopo and António Menezes Leitão. Excercises with answers. In Portuguese. (1995)
- Although teaching Scheme, Hal Abelson and Gerald Jay Sussman's Structure and Interpretation of Computer Programs (SICP) course taught at MIT is a very good resource for learning how to think in Lisp. Videos of lectures are available from CSAIL.
- EECS 325 Lecture Notes
- [using CLOS] How a simple MVC works (810:172 Software Engineering Course)
Implementation Provided Tutorials
Those are Common Lisp tutorial provided by implementations. They may have some implementation specific examples, but may still be useful to all.
- clisp LISP-tutorial.txt
- Basic Lisp Techniques, by David Cooper, Jr., a comprehensive basic Lisp workbook (some Allegro CL dependencies).
Cliki Tutorials
- CloserLookAtCharacters - Characters are not their codes -- Encodings and external format in Common Lisp
- CloserLookAtSyntax - From time to time, we see lisp very newbies try to write "blocks" of expressions within parentheses like:
- DataMiningTools Lisp slides - DataMiningTools is an online education company that has produced a set of freely-viewable introductory slides on Common Lisp:
- Exporting Struct-Related Functions - Brief discussion of functions to be considered for export when creating Lisp structures with defstruct
- format -
- Practical Common Lisp - "Practical Common Lisp", an introduction to Common Lisp by Peter Seibel, available on the web at http://www.gigamonkeys.com/book/ and also in dead-tree form from Apress
- TutorialClispDebugger - Small Clisp Debugger Tutorial
- TutorialDebuggingDeadLock - Debugging a dead-lock in a program using bordeaux-threads in ccl
- TutorialSpecialVariables - Mini Tutorial Special Variables