(some? x)
Returns true if x is not nil, false otherwise.
x
(defn ^boolean some? [x] (not (nil? x)))
(core/defmacro some? [x] `(not (nil? ~x)))