How to examine list of defined functions from Common Lisp REPL prompt

后端 未结 5 1752
一向
一向 2021-01-04 03:02

I\'m evaluating/testing a browser based application presumably written in common lisp. Apart from the browser based interface, the software provides a \'Listener\' window wi

5条回答
  •  孤街浪徒
    2021-01-04 03:41

    (let ((lst ()))                                                     
       (do-all-symbols (s lst)
         (when (fboundp s) (push s lst)))
       lst)
    

    Pretty much taken as-is from here.

提交回复
热议问题