kaktovik

Crates.iokaktovik
lib.rskaktovik
version0.1.4
sourcesrc
created_at2023-04-24 18:53:06.003414
updated_at2023-04-30 14:42:23.261524
descriptionFormat a number in Kaktovik numerals
homepage
repositoryhttps://gitlab.com/sw0x2A/kaktovik
max_upload_size
id847728
size14,491
Stefan Warten (sw0x2A)

documentation

https://docs.rs/kaktovik

README

Latest Version Documentation pipeline status

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:

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.

Commit count: 21

cargo fmt