0
GGGiovanny Gongora
0 Comments
fn factorial(num: i32) -> i32 { match num { 0 | 1 => 1, _ => factorial(num - 1) * num, } }