2
0
mirror of https://github.com/sharkdp/bat synced 2024-11-02 21:40:15 +00:00
bat/assets/theme_preview.rs

6 lines
172 B
Rust
Raw Normal View History

2018-08-28 17:48:07 +00: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);
}