let rec pow (a: int)(b:int):int:=
if b=0 then 1
else a* pow a(b-1)
1.what is the name assigned to this function
2.what are the parameters defined in the function
3.what type of function is this
Answers
Answered by
3
Answer:
"of" (and any subsequent words) was ignored because we limit queries to 32 words
Similar questions