Macro ::std::io::println!(..)

Overview

Prints to output, with a newline.

Output printing is performed by calling the println() function, this is just a convenience wrapper around it which allows for formatting.

Examples

let who = "World";
println!("Hello {}!", who);