(reset! atom newval)
Sets the value of atom to newval without regard for the current value. Returns newval.
user=> (def x (atom 10)) #'user/x user=> @x 10 user=> (reset! x 20) 20 user=> @x 20