| Crates.io | kaktovik |
| lib.rs | kaktovik |
| version | 0.1.4 |
| created_at | 2023-04-24 18:53:06.003414+00 |
| updated_at | 2023-04-30 14:42:23.261524+00 |
| description | Format a number in Kaktovik numerals |
| homepage | |
| repository | https://gitlab.com/sw0x2A/kaktovik |
| max_upload_size | |
| id | 847728 |
| size | 14,491 |
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.