Skip to content

Instantly share code, notes, and snippets.

@bhb
Created April 14, 2018 16:34
Show Gist options
  • Save bhb/8308850b2feef423d1974117152030a6 to your computer and use it in GitHub Desktop.
Save bhb/8308850b2feef423d1974117152030a6 to your computer and use it in GitHub Desktop.
Using expound with lumo
> brew install lumo
...
> npm install @bbrinck/expound
...
> lumo
Lumo 1.8.0
ClojureScript 1.9.946
Node.js v9.2.0
Docs: (doc function-name-here)
(find-doc "part-of-name-here")
Source: (source function-name-here)
Exit: Control+D or :cljs/quit or exit
cljs.user=> (require '[expound.alpha :as expound])
nil
cljs.user=> (require '[clojure.spec.alpha :as s])
nil
cljs.user=> (expound/expound (s/coll-of string?) ["a" "b" :c])
-- Spec failed --------------------
[... ... :c]
^^
should satisfy
string?
-------------------------
Detected 1 error
nil
cljs.user=>
@arichiardi
Copy link

great!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment