Using defn or fn it\'s easy to create a function that taking one argument that ignores it and returns 1:
(defn ret1 [arg] 1) (fn [arg] 1)
Is it
#(do %& 1) ... but (constantly 1) is better.
#(do %& 1)
(constantly 1)