(def loop (lambda (max i statement) (all statement (cond (= i max) false (loop max (- i 1) (id statement))))))