print_str

Function print_str 

Source
pub fn print_str(s: &str)
Expand description

Print a string to the game chat. Any printed characters will not appear until a newline ('\n') is written. Only ASCII printable characters will be printed; any other characters will appear as a � symbol.

If you want to print a string to the game chat with a newline, consider using println(). If formatting is required, consider using print! or println!.