blob: 0659c3d86e1587adf6139043844e10440fc3461f [file] [log] [blame]
;; Prints all defined Lisp functions
(defun main ()
(mapcar (lambda (fun)
(print fun))
(env-functions +current-env+)))