Skip to content

Instantly share code, notes, and snippets.

@agar3s
Created April 8, 2013 22:56
Show Gist options
  • Save agar3s/5341282 to your computer and use it in GitHub Desktop.
Save agar3s/5341282 to your computer and use it in GitHub Desktop.
fun naranjas(n:int) =
let fun funcion_auxiliar(numero, acumulador) =
if numero = 0 then
acumulador
else
funcion_auxiliar(numero - 1, acumulador * numero)
in
funcion_auxiliar(n, 1)
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment