Skip to content

Rust library for converting Arabic numerals (1,2,3...) to Ancient Greek numerals (α', β', γ' ...)

License

Notifications You must be signed in to change notification settings

vincentjorgensen/arithmos

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 

Repository files navigation

arithmos

License: GPL-3.0

Rust library for converting Arabic numerals (1,2,3...) to Ancient Greek numerals (α', β', γ' ...)

Example usage

use arithmos::GreekNumeral;

fn main() {
   let num = GreekNumeral::new(616).unwrap();
   println!("{}", num); // ΧΙϜ'
   assert_eq!("ΧΙϜ'".parse().unwrap(), num);
}

License

GPL-3.0

Contribution

Any contribution intentionally submitted for inclusion in this project shall be licensed as above without additional terms or conditions.

About

Rust library for converting Arabic numerals (1,2,3...) to Ancient Greek numerals (α', β', γ' ...)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages