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}