//! # 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@14 --rename fib14
//! ```
//!
//! Then you can use the `VALUE` constant to get its value:
//! ```
//! # use fibonacci_numbers as fib14;
//! assert_eq!(fib14::VALUE, 377);
//! ```
#![no_std]
/// The 2nd [Fibonacci number](https://en.wikipedia.org/wiki/Fibonacci_number): 377
pub const VALUE: u128 = fib12::VALUE + fib13::VALUE;