rlibutils 0.1.3

A small collection of utility functions for your rust projects
Documentation
1
2
3
pub fn factorial(n: i64) -> i64 {
    (1..=n).product()
}