probablykasper / cpc

Text calculator with support for units and conversion
https://crates.io/crates/cpc
MIT License
121 stars 14 forks source link

Output formatting improvements #20

Closed djmattyg007 closed 1 year ago

djmattyg007 commented 3 years ago

Currently the output doesn't produce nice human-readable descriptions, and doesn't differentiate between singular and plural values.

❯ target/release/cpc '123 kph'
123 KilometersPerHour

❯ target/release/cpc '1 kph'
1 KilometersPerHour

It would be good if the output of the above was 123 kilometres per hour and 1 kilometre per hour.

probablykasper commented 3 years ago

Would be nice for sure. I think the way to go is implement fmt::Display for Unit