Значение ржавчины PI

use std::f64::consts::PI;

// or
let pi = std::f64::consts::PI;

// or as a literal
const pi: f64 = 3.141592653589793;
Mackerel