✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Assume that we have the Clojure code below. What would the println statement display?
(def foo (atom 10))(future (swap! foo + 15))(future (swap! foo - 5))(Thread/sleep 2000)(println (deref foo))