kaktovik 0.1.4

Format a number in Kaktovik numerals
Documentation
[![Latest Version](https://img.shields.io/crates/v/kaktovik.svg)](https://crates.io/crates/kaktovik)
[![Documentation](https://img.shields.io/badge/api-rustdoc-purple.svg)](https://docs.rs/kaktovik)
[![pipeline status](https://gitlab.com/sw0x2A/kaktovik/badges/main/pipeline.svg)](https://gitlab.com/sw0x2A/kaktovik/-/commits/main)

This crate provides a tool to format a number in [Kaktovik numerals](https://en.wikipedia.org/wiki/Kaktovik_numerals), 
which are a base-20 system of numerical digits created by Alaskan Iรฑupiat.
To use it, you can create a [KaktovikNum](https://docs.rs/kaktovik/latest/kaktovik/struct.KaktovikNum.html) object 
with the number you want to format, and then print it out. Here's an example:

### Usage
```
use kaktovik::*;

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

This will output "๐‹‚๐‹‚๐‹“", which is the Kaktovik numeral representation of the number 859.