1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-10-04 10:11:35 +02:00

Remove feedback requests and inline credits

This commit is contained in:
Boris Verkhovskiy
2025-01-22 13:44:23 -07:00
parent c3c2f20a80
commit 0dba59d585
16 changed files with 9 additions and 147 deletions

View File

@@ -4,6 +4,7 @@ name: "Common Lisp"
filename: commonlisp.lisp
contributors:
- ["Paul Nathan", "https://github.com/pnathan"]
- ["Paul Khuong", "https://github.com/pkhuong"]
- ["Rommel Martinez", "https://ebzzry.io"]
---
@@ -14,8 +15,6 @@ The classic starting point is [Practical Common Lisp](http://www.gigamonkeys.com
popular and recent book is [Land of Lisp](http://landoflisp.com/). A new book about best practices,
[Common Lisp Recipes](http://weitz.de/cl-recipes/), was recently published.
```lisp
;;;-----------------------------------------------------------------------------
;;; 0. Syntax
@@ -667,24 +666,14 @@ nil ; false; also, the empty list: ()
;;; See Practical Common Lisp and On Lisp for more information on macros.
```
## Further reading
- [Practical Common Lisp](http://www.gigamonkeys.com/book/)
- [Common Lisp: A Gentle Introduction to Symbolic Computation](https://www.cs.cmu.edu/~dst/LispBook/book.pdf)
## Extra information
- [CLiki](http://www.cliki.net/)
- [common-lisp.net](https://common-lisp.net/)
- [Awesome Common Lisp](https://github.com/CodyReichert/awesome-cl)
- [Lisp Lang](http://lisp-lang.org/)
## Credits
Lots of thanks to the Scheme people for rolling up a great starting
point which could be easily moved to Common Lisp.
- [Paul Khuong](https://github.com/pkhuong) for some great reviewing.