Macro uefi::println

source ·
macro_rules! println {
    () => { ... };
    ($($arg:tt)*) => { ... };
}
Expand description

Prints to the standard output, with a newline.

§Panics

Will panic if SYSTEM_TABLE is None (Before uefi::helpers::init() and after uefi::prelude::SystemTable::exit_boot_services()).

§Examples

println!();
println!("Hello World");
println!("Hello {}", "World");