Auto urgent commit.

This commit is contained in:
2024-12-18 09:50:27 +01:00
parent efc7387a03
commit d86df700a2
5 changed files with 100 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
fn main() {
println!("Hello, world!");
let f = fibobo(30);
println!("{f}");
}
fn fibobo(n: u64) -> u64 {
if n <= 1 {
return n;
}
return fibobo(n - 1) + fibobo(n - 2);
}