rexl_math 0.0.2

A simple mathematics library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate rexl_math;


use rexl_math::numeric::function::*;

#[test]
fn test_fibonacci() {
    for n in 1..20 {
        println!("fibonacci {:?} is:\t{:?}", n, fibonacci(n));
    }
}