Crates.io | fibonacci-like |
lib.rs | fibonacci-like |
version | 0.1.3 |
source | src |
created_at | 2022-08-19 04:14:48.97183 |
updated_at | 2022-08-21 05:18:47.744808 |
description | A small crate to help you interact with second order sequences, such as the Fibonacci sequence, with no_std support |
homepage | |
repository | https://github.com/jewlexx/fibonacci-like |
max_upload_size | |
id | 648535 |
size | 24,624 |
A small crate to help you interact with second order sequences, such as the Fibonacci sequence, with no_std support.
[dependencies]
fibonacci_like = "0.1"
let nth = 69;
let number = fibonacci_like::Sequence::fibonacci().calculate(nth);
println!("The \"{nth}\" number of the fibonacci sequence is:\n{number}");
One of the following, at your choice:
Made with 💗 by Juliette Cordor