1
0
mirror of https://github.com/sharkdp/bat.git synced 2024-10-06 10:51:05 +01:00
bat/assets/theme_preview.rs

6 lines
172 B
Rust
Raw Normal View History

2018-08-28 18:48:07 +01:00
// Output the square of a number.
fn print_square(num: f64) {
let result = f64::powf(num, 2.0);
println!("The square of {:.2} is {:.2}.", num, result);
}