Skip to content

Instantly share code, notes, and snippets.

@fogus
Created June 23, 2010 18:08
Show Gist options
  • Save fogus/450297 to your computer and use it in GitHub Desktop.
Save fogus/450297 to your computer and use it in GitHub Desktop.
(defconstrainedfn sqr
"Squares a number"
[n]
:requires
(number? n)
(not= 0 n)
:ensures
(pos? %)
:body
(* n n))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment