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

后端 未结 5 1753
一向
一向 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:28

    To list everything:

     (apropos "")
    

    To list everything from a specific package add 'project-name:

    (apropos "" 'quickproject)
    

提交回复
热议问题