JanetDocsPlaygroundI'm feeling luckyGitHub sign in
(def ds @[@{:a 1 :b 2} @{:a 8 :b 9}]) (defn thrice [x] (* x 3)) (update-in ds [0 :b] thrice) # `ds` is now @[@{:a 1 :b 6} @{:a 8 :b 9}]