Expand description
say-number
says numbers in English, Chinese (simplified), French, Japanese and Vietnamese.
§Quickstart
Add the following to your Cargo.toml
file.
[dependencies]
say-number = "0.1"
§Examples
println!("The number is {}.", say_number::say(42));
assert_eq!(say_number::say(514), "five hundred and fourteen".to_string());
assert_eq!(say_number::english::say(514), "five hundred and fourteen".to_string());
assert_eq!(say_number::chinese_simplified::say(514), "五百一十四".to_string());
assert_eq!(say_number::french::say(514), "cinq-cent-quatorze".to_string());
assert_eq!(say_number::japanese::say(514), "五百十四".to_string());
assert_eq!(say_number::vietnamese::say(514), "năm trăm mười bốn".to_string());
Modules§
Functions§
- say
- Says a number in English. Attention: in future releases, this function will automatically select the language to use based on the user’s setting on his/her machine.