An open API service indexing awesome lists of open source software.

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

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)
```