Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Using a single value from the Standard library

use std::f32::consts::PI;
// use std::f64::consts::PI; // error[E0252]: the name `PI` is defined multiple times

fn main() {
    println!("{}", PI);
}
3.1415927