Created
April 14, 2018 16:34
-
-
Save bhb/8308850b2feef423d1974117152030a6 to your computer and use it in GitHub Desktop.
Using expound with lumo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> 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=> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
great!