Suppose you have the following code to get all primes until a parameter:
(defn my-filt [x z] (or (not= 0 (mod z x)) (= z x) ) ) (de