Created
December 10, 2019 11:12
-
-
Save mpenet/fa611105b4a0a38126c5ba8ffe60d8a7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
(clojure.spec.alpha/def ::asd (clojure.spec.alpha/keys :req [::foo])) | |
(clojure.spec.alpha/valid? ::asd {}) | |
false | |
(clojure.spec.alpha/valid? ::asd {::foo 1}) | |
true | |
;; ::foo was never declared |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment