Skip to content

Instantly share code, notes, and snippets.

@bhb
Created April 3, 2018 01:41
Show Gist options
  • Save bhb/6c0f4fdd2ef0930cc6043579ade39d68 to your computer and use it in GitHub Desktop.
Save bhb/6c0f4fdd2ef0930cc6043579ade39d68 to your computer and use it in GitHub Desktop.
fdef example
;; This is a valid ordering:
;; first spec, then function defintion
(s/fdef my-add
:args (s/cat :x int? :y int?))
(defn my-add [x y]
(+ x y))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment