Modules Use
-
Items in modules can be referenced with their full module path
std::f64::consts::PI
-
A simpler way is the
use
keyword; it allows us to specify particular items from modules we want to use throughout our code without a full path -
std
is the crate of the standard library of Rust which is full of useful data structures and functions for interacting with your operating system