DEV Community

Discussion on: Daily Challenge #49 - Dollars and Cents

Collapse
 
brightone profile image
Oleksii Filonenko

Rust:

fn format_dollars(amount: f64) -> String {
    format!("${:.2}", amount)
}