Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
14d0b84bf94802a380045b37098b35f07461dffc
/
.
/
doc
/
lisp_reference
/
all-functions.lisp
blob: 0659c3d86e1587adf6139043844e10440fc3461f [
file
] [
log
] [
blame
]
swissChili
04d9416
2022-07-30 21:46:49 -0700
[
diff
] [
blame
]
1
;; Prints all defined Lisp functions
2
(
defun
main
(
)
3
(
mapcar
(
lambda
(
fun
)
4
(
print fun
))
5
(
env-functions
+
current-env
+
)))