Skip to content

Instantly share code, notes, and snippets.

@jaycfields
Created December 23, 2013 19:54
Show Gist options
  • Save jaycfields/8103549 to your computer and use it in GitHub Desktop.
Save jaycfields/8103549 to your computer and use it in GitHub Desktop.
let can be the first binding to doseq, and it will be executed exactly 1 time.
(doseq [:let [a (do (println 1) 99)]
x [11 12]]
(println x a))
;; output:
;; 1
;; 11 99
;; 12 99
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment