mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 04:48:53 +00:00
6 lines
86 B
Markdown
6 lines
86 B
Markdown
fn factorial(n: u64) -> u64 {
|
|
if n == 0 {
|
|
return 1;
|
|
}
|
|
n * factorial(n - 1)
|
|
} |