Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
refs/heads/master
/
.
/
doc
/
lisp_reference
/
all-functions.lisp
blob: 0659c3d86e1587adf6139043844e10440fc3461f [
file
] [
log
] [
blame
]
;; Prints all defined Lisp functions
(
defun
main
(
)
(
mapcar
(
lambda
(
fun
)
(
print fun
))
(
env-functions
+
current-env
+
)))