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

Overview

Prints to output.

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

Examples

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