1326aed02c
Except for error.rs, the result there looks rather ugly
9 lines
148 B
Rust
9 lines
148 B
Rust
#[inline(never)]
|
|
pub fn main() {
|
|
assert_eq!(fib(10), 55);
|
|
}
|
|
|
|
fn fib(n: usize) -> usize {
|
|
if n <= 2 { 1 } else { fib(n - 1) + fib(n - 2) }
|
|
}
|