E
Edward
Guest
When you write SKILL in the Lisp syntax you have the option of placing a documentation string. It would be useful if there were a function that could coerce that string.
Example:
(defun MYfunc ()
"This does what you need" ; Docstring!
(printf "Hi there!\n"))
CIW> (describe 'MYfunc)
"This does what you need."
Is there a SKILL function that does something like this?
Edward
Example:
(defun MYfunc ()
"This does what you need" ; Docstring!
(printf "Hi there!\n"))
CIW> (describe 'MYfunc)
"This does what you need."
Is there a SKILL function that does something like this?
Edward