Macro qemu_print::qemu_println[][src]

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

Print a string with newline to the console.

use qemu_print::qemu_println;

qemu_println!("hello world.");