You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(defn recurse [a]
(if (= a 0)
;; We return an Int
0
;; But treat the return value of the recursive call as &Int
@(recurse (dec a))))
(defn main []
(println* (recurse 1)))