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
How about #(identity 1)? which does the same thing as #(do %& 1) or (constantly 1).
#(identity 1)
#(do %& 1)
(constantly 1)