fact

@JvmOverloads
tailrec fun fact(n: Long, run: Long = 1): Long

Calculate factorial of n.

Example:

fact(5) // 120L

Since

1.1.0