https://github.com/visvirial/rust_fibo
Computes Fibonacci numbers using Rust
https://github.com/visvirial/rust_fibo
fibonacci rust
Last synced: 8 months ago
JSON representation
Computes Fibonacci numbers using Rust
- Host: GitHub
- URL: https://github.com/visvirial/rust_fibo
- Owner: visvirial
- Created: 2021-06-02T06:14:08.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-03T00:51:39.000Z (about 5 years ago)
- Last Synced: 2025-02-06T05:04:32.256Z (over 1 year ago)
- Topics: fibonacci, rust
- Language: Rust
- Homepage: https://crates.io/crates/fibo
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Fibonacci Rust
==============
Compute the `n`-th Fibonacci number modulo `m` with given integers `n` and `m`.
Install
-------
```bash
$ cargo install fibo
```
Usage
-----
```bash
$ fibo 123456789123456789123456789 987654321
F(123456789123456789123456789) = 344648225 mod 987654321 (0ms)
```