Skip to content

Instantly share code, notes, and snippets.

@bhb
Created July 17, 2018 13:17
Show Gist options
  • Save bhb/910f718e2da57793bc0f5817f006f28a to your computer and use it in GitHub Desktop.
Save bhb/910f718e2da57793bc0f5817f006f28a to your computer and use it in GitHub Desktop.
`set!` will apply to threads created within REPL
> clj -Sdeps '{:deps {expound {:mvn/version "0.7.1"}}}'
Clojure 1.9.0
user=> (require '[expound.alpha :as expound] '[clojure.spec.alpha :as s])
nil
user=> ;; default printer is used
user=> (future (s/explain int? "a"))
val: "a" fails predicate: :clojure.spec.alpha/unknown
#object[clojure.core$future_call$reify__8097 0x99a65d3 {:status :ready, :val nil}]
user=> (set! s/*explain-out* expound/printer)
#object[expound.alpha$printer 0x4ad4936c "expound.alpha$printer@4ad4936c"]
user=> ;; Now expound is used in thread
user=> (future (s/explain int? "a"))
#object[clojure.core$future_call$reify__8097 0x25cc7470 {:status :pending, :val nil}]
user=>
-- Spec failed --------------------
"a"
should satisfy
int?
-------------------------
Detected 1 error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment