Skip to content

Instantly share code, notes, and snippets.

@chespinoza
Created January 14, 2014 05:13
Show Gist options
  • Save chespinoza/8413427 to your computer and use it in GitHub Desktop.
Save chespinoza/8413427 to your computer and use it in GitHub Desktop.
Guards
(defn make-greetings
[hello]
{:pre [(string? hello) (< (count hello) 10)] ; pre-validation guards
:post [(string? %)]} ; result validation
(fn [name]
(str hello " " name "!")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment