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