Skip to content

Instantly share code, notes, and snippets.

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