//! # fibonacci-numbers
//! First install the version of this crate corresponding to the [Fibonacci number](https://en.wikipedia.org/wiki/Fibonacci_number) you want to use:
//! ```sh
//! cargo add fibonacci-numbers@2 --rename fib2
//! ```
//!
//! Then you can use the `VALUE` constant to get its value:
//! ```
//! # use fibonacci_numbers as fib2;
//! assert_eq!(fib2::VALUE, 1);
//! ```
#![no_std]
/// The 2nd [Fibonacci number](https://en.wikipedia.org/wiki/Fibonacci_number): 1
pub const VALUE: u128 = fib0::VALUE + fib1::VALUE;