[][src]Function term_basics_linux::print

pub fn print<T: Display>(msg: T)

Print to stdout, it is just print!("{}", msg); Here to stay consistent

Example

use term_basics_linux as tbl;
tbl::print("cool and good");