Skip to content

Instantly share code, notes, and snippets.

@cohalz
Created January 19, 2014 13:53
Show Gist options
  • Save cohalz/8505296 to your computer and use it in GitHub Desktop.
Save cohalz/8505296 to your computer and use it in GitHub Desktop.
let rec pow(x,n) =
if n <= 1 then x else x * pow(x,n-1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment