Factorial !

Returns the factorial of its argument:

\begin{eqnarray*}
0!&=&1\\
n! &=& \prod_{i=1}^n i\\
\end{eqnarray*}


Note:

\begin{displaymath}
n!=\Gamma(n+1)
\end{displaymath}

which is how it is implemented in Minsky.