Created
February 28, 2018 22:32
-
-
Save bhb/2f99d9dd04134cde50623e4f8764a00e to your computer and use it in GitHub Desktop.
Example of rebel+expound REPL
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
> clj -Sdeps '{:deps {friendly {:git/url "https://gist.github.com/bhb/2686b023d074ac052dbc21f12f324f18" :sha "cbc5b3c73d4788a25570f125e5f2de23a3d2bf5f"}}}' -m friendly | |
[Rebel readline] Type :repl/help for online help info | |
user=> (let ["x" 1]) | |
CompilerException clojure.lang.ExceptionInfo: Call to clojure.core/let did not conform to spec: | |
-- Spec failed -------------------- | |
(["x" 1]) | |
^^^ | |
should satisfy | |
simple-symbol? | |
or | |
vector? | |
or | |
coll? | |
or | |
map? | |
------------------------- | |
Detected 1 error | |
#:clojure.spec.alpha{:problems ({:path [:args :bindings :binding :sym], :pred clojure.core/simple-symbol?, :val "x", :via [:clojure.core.specs.alpha/bindings :clojure.core.specs.alpha/bindings :clojure.core.specs.alpha/binding :clojure.core.specs.alpha/binding-form :clojure.core.specs.alpha/binding-form :clojure.core.specs.alpha/local-name], :in [0 0]} {:path [:args :bindings :binding :seq], :pred clojure.core/vector?, :val "x", :via [:clojure.core.specs.alpha/bindings :clojure.core.specs.alpha/bindings :clojure.core.specs.alpha/binding :clojure.core.specs.alpha/binding-form :clojure.core.specs.alpha/binding-form :clojure.core.specs.alpha/seq-binding-form], :in [0 0]} {:path [:args :bindings :binding :map], :pred clojure.core/coll?, :val "x", :via [:clojure.core.specs.alpha/bindings :clojure.core.specs.alpha/bindings :clojure.core.specs.alpha/binding :clojure.core.specs.alpha/binding-form :clojure.core.specs.alpha/binding-form :clojure.core.specs.alpha/map-binding-form :clojure.core.specs.alpha/map-bindings], :in [0 0]} {:path [:args :bindings :binding :map], :pred map?, :val "x", :via [:clojure.core.specs.alpha/bindings :clojure.core.specs.alpha/bindings :clojure.core.specs.alpha/binding :clojure.core.specs.alpha/binding-form :clojure.core.specs.alpha/binding-form :clojure.core.specs.alpha/map-binding-form :clojure.core.specs.alpha/map-special-binding], :in [0 0]}), :spec #object[clojure.spec.alpha$regex_spec_impl$reify__2436 0x47ffdbba "clojure.spec.alpha$regex_spec_impl$reify__2436@47ffdbba"], :value (["x" 1]), :args (["x" 1])}, compiling:(NO_SOURCE_PATH:1:1) | |
user=> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment