(def x 5)

(defn add-5 [y] (+ x y))

(println (add-5 5))

(defn change-x []
  (def x 6))

(change-x)

(println (add-5 5))