Skip to content

Instantly share code, notes, and snippets.

@kunishi
Created January 29, 2014 10:18
Show Gist options
  • Save kunishi/8685136 to your computer and use it in GitHub Desktop.
Save kunishi/8685136 to your computer and use it in GitHub Desktop.
fun millionPower(x:real) =
let
val four = x*x*x*x;
val twenty = four*four*four*four*four;
val hundred = twenty*twenty*twenty*twenty*twenty;
val fivehundred = hundred*hundred*hundred*hundred*hundred
in
fivehundred*fivehundred
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment