Closed zerg000000 closed 1 year ago
Is it the expected behavior?
(car/wcar {} (car/set "a" 1)) (car/wcar {} (car/get "a")) ;; => "1" ;; set integer, but we get string back (car/wcar {} (car/set "b" {:a 1})) (car/wcar {} (car/get "b")) ;; => {:a 1} ;; set map, we get map as expected
@zerg000000 Hi Albert! Yes, that may seem a bit confusing but is expected behaviour.
Would recommend checking out the Getting started guide.
Is it the expected behavior?