(defn hello-forever [a] (println "hello!") (Thread/sleep 1500) (recur 1)) (let [a (agent nil)] #_(send a hello-forever) (send-off a hello-forever)) ; no reference to the agnet (System/gc) ; force GC ;; but still prints `hello!'.