Advertisement
EXTREMEXPLOIT

Esto es lo máximo que voy a hacer en SML

Oct 2nd, 2020
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. fun Factorial(0) = 1
  2. | Factorial(n) = n * Factorial(n-1)
  3.  
  4. val Out = Factorial(5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement