use percent_rs::Percentage; fn main() { let percent = Percentage::from(50); println!("50% is equal to {}", percent.value()); }