(loop [n 0] (if (= n 10) n ; true case: return n (recur (inc n)))) ; false case: loop with n++ ;=> 10