up previous next
factorial    --    factorial function


Syntax
factorial(N: INT): INT

Description
This function returns the factorial of N, the product of all integers up to and including N.

Example
/**/  factorial(5);
120

/**/  factorial(25);
15511210043330985984000000

See Also