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
Maybe something like this:
(defun get-symbols-in-package (&optional (package *package*)) (let ((lst ())) (do-symbols (s package) (push s lst)) lst))
Use as (get-symbols-in-package) or (get-symbols-in-package 'foo) ...
(get-symbols-in-package)
(get-symbols-in-package 'foo)