ERDM4M5AEYMNK3P4KE6IZURA5IZ3E7TVD37OLYRNWHUW2LJQDSLQC
let rec pow_aux n p acc =
if p = 0 then 1.
else if p = 1 then acc
else pow_aux n (p-1) (n *. acc)
let pow n p =
pow_aux n p n
[CS3110](https://cs3110.github.io/textbook/cover.html) 2 and 3 stars exercises