Skip to content

Instantly share code, notes, and snippets.

@fogus
Created July 27, 2010 00:13
Show Gist options
  • Save fogus/491492 to your computer and use it in GitHub Desktop.
Save fogus/491492 to your computer and use it in GitHub Desktop.
(use [fogus.me.trammel :only [apply-contracts]])
(defn sqr [n]
(* n n))
(apply-contracts
[sqr [n] :requires number? (not= 0 n)
:ensures pos? number?])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment