Skip to content

Instantly share code, notes, and snippets.

@mlb-
Last active October 21, 2016 01:09
Show Gist options
  • Save mlb-/bb048b24b2b3c59e6e66 to your computer and use it in GitHub Desktop.
Save mlb-/bb048b24b2b3c59e6e66 to your computer and use it in GitHub Desktop.
Stupid recursive Clojure destructuring
(let [[[x1 y1] [x2 y2] :as [c1 c2 :as cs]] [[1 2] [3 4]]]
{:x1 x1
:y1 y1
:x2 x2
:y2 y2
:c1 c1
:c2 c2
:cs cs})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment