Skip to content

Instantly share code, notes, and snippets.

@danneu

danneu/demo.clj Secret

Created March 10, 2013 21:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danneu/a39f5354938b7b9a754e to your computer and use it in GitHub Desktop.
Save danneu/a39f5354938b7b9a754e to your computer and use it in GitHub Desktop.
(map list {:1 1 :2 2} {:3 3 :4 4})
;=> (([:1 1] [:4 4]) ([:2 2] [:3 3]))
(map list {:a 1 :b 2} {:c 3 :d 4})
;=> (([:a 1] [:c 3]) ([:b 2] [:d 4]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment