This crate provides a tool to format a number in Kaktovik numerals, which are a base-20 system of numerical digits created by Alaskan Iรฑupiat. To use it, you can create a KaktovikNum object with the number you want to format, and then print it out. Here's an example:
``` use kaktovik::*;
fn main() { let k = KaktovikNum::new(859); println!("{}", k); } ```
This will output "๐๐๐", which is the Kaktovik numeral representation of the number 859.