1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-02-21 12:28:30 +00:00
bat/tests/examples/test-invalid-utf8-Ã(.rs

5 lines
128 B
Rust
Vendored

fn print_square(num: f64) {
let result = f64::powf(num, 2.0);
println!("The square of {:.2} is {:.2}.", num, result);
}