summaryrefslogtreecommitdiffstats
path: root/assets/theme_preview.rs
blob: 1e436225cadb1932fb30290dfa82d668a9371795 (plain)
1
2
3
4
5
  // 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);
  }