To read an atom's value, simply put the name of the atom, with a @ before it:
@
@counter ; => 0
A bigger example:
(def number (atom 3)) (println (inc @number)) ;; This should output 4