#313
atoms-4
 

Difficulty:Basic
Topics:atoms


Any number of arguments might happen during a swap
test not run
(let [atomic-clock (atom 0)]
      (= __ (do
               (swap! atomic-clock + 1 2 3 4 5)
               @atomic-clock)))


Code which fills in the blank: