Latest Version Documentation

This crate adds a tool to format a number in Kaktovik numerals. They are a base-20 system of numerical digits created by Alaskan IƱupiat. They are visually iconic, with shapes that indicate the number being represented.

This is a light crate, without any dependency.

Usage

``` use kaktovik::*;

fn main() { let k = KaktovikNum::new(859); println!("859 is {}", k); } ```