blob: 0659c3d86e1587adf6139043844e10440fc3461f [file] [log] [blame]
swissChili04d94162022-07-30 21:46:49 -07001;; Prints all defined Lisp functions
2(defun main ()
3 (mapcar (lambda (fun)
4 (print fun))
5 (env-functions +current-env+)))