Perhaps you can help me find this in the docs. I\'m using pound-quote to be able to pass around unevaluated function names prior to execution. For example:
(
#' is the reader macro for var. See http://clojure.org/special_forms#var and http://clojure.org/vars
#'
var
(var foo) returns the var named by the symbol foo, which can hold any kind of value, including functions.
(var foo)
foo