fibonacci-like 0.1.3

A small crate to help you interact with second order sequences, such as the Fibonacci sequence, with no_std support
Documentation
1
2
3
4
5
6
7
fn main() {
    let nth = 69;

    let number = fibonacci_like::Sequence::fibonacci().calculate(nth);

    println!("The \"{nth}\" number of the fibonacci sequence is:\n{number}");
}