I am learning lisp and i was wondering if there were any built in help commands – ie: return help on a topic or command – like (defun /?)
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The standard function
describecan provide some information about objects in an implementation-specific way, e.g.Common Lisp is described by a standard, ANSI Common Lisp, and that standard has been HTMLized and is available online. Its index can be used to look up the specification of a particular function, macro, special form, etc.
For a quick reference, try the CL quick reference.
I use http://l1sp.org/ for quick lookup as well.
Most CL environments have a key combination that will look things up in the HyperSpec, too. In SLIME, it’s
C-c C-d h.