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@138 --rename fib138
5//! ```
6//!
7//! Then you can use the `VALUE` constant to get its value:
8//! ```
9//! # use fibonacci_numbers as fib138;
10//! assert_eq!(fib138::VALUE, 30960598847965113057878492344);
11//! ```
12
13#![no_std]
14
15/// The 138th [Fibonacci number](https://en.wikipedia.org/wiki/Fibonacci_number): 30960598847965113057878492344
16pub const VALUE: u128 = fib136::VALUE + fib137::VALUE;