mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-17 22:37:04 +08: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)
|
|
} |