Macro console_print
Source macro_rules! console_print {
($($arg:tt)*) => { ... };
}
Expand description
Prints to the in-game console log (Skyrim) without a newline.
This is analogous to print!
,
but targets the Skyrim in-game console log instead of stdout.
ยงExamples
use commonlibsse_ng::console_print;
console_print!("Hello, {}!", "Dragonborn");