base79 0.1.0

Textual representation of and utility functions for base-79 fractional numbers with arbitrary precision
Documentation
1
2
3
4
5
6
7
8
9
use base79::Base79;

fn main() {
    let mut working = Base79::mid();
    for _ in 0..30 {
        working = Base79::avg_with_zero(&working);
        println!("{:?}", working);
    }
}