fibonacci_numbers/
lib.rs

1//! # fibonacci-numbers
2//! First install the version of this crate corresponding to the [Fibonacci number](https://en.wikipedia.org/wiki/Fibonacci_number) you want to use:
3//! ```sh
4//! cargo add fibonacci-numbers@84 --rename fib84
5//! ```
6//!
7//! Then you can use the `VALUE` constant to get its value:
8//! ```
9//! # use fibonacci_numbers as fib84;
10//! assert_eq!(fib84::VALUE, 160500643816367088);
11//! ```
12
13#![no_std]
14
15/// The 84th [Fibonacci number](https://en.wikipedia.org/wiki/Fibonacci_number): 160500643816367088
16pub const VALUE: u128 = fib82::VALUE + fib83::VALUE;