Where can I find a list of the common Lisp keywords, that's the list of reserved words used in Common Lisp, words like ash, setf, etc.. It would be nice if the list had the usage of the keywords, anyway, all I can find are some of the keywords scattered around in example programs all over the net. I can't do a search on a keyword unless I already know the keyword, and I cant know the keyword unless it's in a list somewhere.
Thanks
If by keyword, you mean the language defined operators, functions, and macros, you can get a list of those symbols by doing:
(let (result)
(do-external-symbols (s :common-lisp)
(push s result))
(sort result #'string<))
(I am not going to showing the full result list of 978 symbols here). You can read about each of them in the CLHS, in particular, check the symbol index.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With