11 lines
310 B
Go
11 lines
310 B
Go
; lists all built-in and user-defined functions, including those within variables
|
|
(-> (symbols)
|
|
(map eval)
|
|
(filter (comp type-of (= "func"))))
|
|
|
|
; lists only user-defined functions, including those within variables
|
|
(-> (symbols)
|
|
(map eval)
|
|
(filter (comp type-of (= "func")))
|
|
(remove about))
|