Returns the factorial of a natural number.
Fact (n)
n:integer expression
Fact (n) returns the factorial of a natural number n (n!). A factorial is the product of the first n natural numbers, where 0! = 1.
OpenW # 1
Print Fact(6) // 6! is 720
{Created by Sjouke Hamstra; Last updated: 05/10/2014 by James Gaite}