Skip to content

Instantly share code, notes, and snippets.

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