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