This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
(define (myfunc) (println "this is myfunc"))
;; define a list of functions
(set 'funclist '(myfunc myfunc myfunc myfunc myfunc))
;; get and run the nth = 2 item of the list
(println "getting func")
(set 'afunc (funclist 2))
(println "calling func ")
(afunc)
getting funcQuote
calling func
ERR: invalid function : (afunc)