1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-02-22 04:48:48 +00:00
bat/tests/examples/test-invalid-utf8-Ã(.rs

5 lines
128 B
Rust
Raw Normal View History

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