(defn recurse
[temp total] ;total is: (and true true(and false))
(map (fn [i]
(cond
(seq? i) (println "");If total is not a single parenthesis (single sequence), recur until it is
(= i 'and) (System/exit 0) ;I want this to be called only when the **second** "and" is called
:else (println "This should never print I think")
))
idealreturn)
)
Я хочу, чтобы (система / выход 0) вызывался только , когда обнаруживается второе "и" в всего , а не раньше. Как бы я go об этом?