Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 384 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 384 Bytes

Shmap

bullethell

Property value shorthand macro, like in js. When you are too lazy to specify both key and value.

(let [one 1
      two 2
      :three three
      ten 10]
  (shmap one
         two
         :three three
         ten)) => {:one 1, :two 2, :three 3, :ten 10}