sometimes you just write some code

Created: Mar 19, 2021Published: Mar 28, 2023Last modified: Apr 05, 2023
No tags
Word count: 6
(defn fattener [x]
  (assoc x
         :yall_real_fat true
         :weight (* (:weight x) 100)))

(defworkspace example
  {:hello "sir"
   :key   "value"
   :weight 217}
  {:bye "dude"}
  fattener
  )

1