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

Prints to the standard output, with a newline.

Panics

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

Examples

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