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