Function term_basics_linux::print [−][src]
pub fn print<T: Display>(msg: T)
Expand description
Print to stdout, it is just print!(“{}”, msg); Here to stay consistent
Example
use term_basics_linux as tbl;
tbl::print("cool and good");