WMA link
For
True
Compute the factorial of 10 using For:
n := 1
For[i=1, i<=10, i=i+1, n = n * i]
n
n == 10!