Join Exercism’s Common Lisp Track for access to 90 exercises grouped into 27 Common Lisp Concepts, with automatic analysis of your code and personal mentoring, all 100% free.
(defun distance (str1 str2 &key (test #'char=)) "Number of positional differences in two equal length strings." (when (= (length str1) (length str2)) (count nil (map 'list test str1 str2))))
Get better at programming through fun, rewarding coding exercises that test your understanding of concepts with Exercism.
Help Lucy try to make numbers more magnificent and keep only those that are.
Create a sentence of the form "One for X, one for me.".
Convert a long phrase to its acronym.
Common Lisp has a full featured REPL, development can happen as a 'conversation' with the system.
Common Lisp is fully inspectable with built-in functions for exploring every part of the language.
Code has the same structure as data, allowing for powerful macros: code that writes code.
Generic functions, reader-macros, and flexible namespacing allow for the extension of the language
The language is very stable, with multiple implementations to match your needs – JVM, embedded, etc.
Whether you prefer a functional style or something more object-oriented, Lisp adapts to your needs.
Every language has its own way of doing things. Common Lisp is no different. Our mentors will help you learn to think like a Common Lisp developer and how to write idiomatic code in Common Lisp. Once you've solved an exercise, submit it to our volunteer team, and they'll give you hints, ideas, and feedback on how to make it feel more like what you'd normally see in Common Lisp - they'll help you discover the things you don't know that you don't know.
Learn more about mentoringThe Common Lisp track on Exercism has 27 concepts and 90 exercises to help you write better code.
See all Common Lisp exercisesThe best part, it’s 100% free for everyone.
Join the Common Lisp track