[][src]Macro fomat_macros::pintln

macro_rules! pintln {
    ($($arg:tt)*) => { ... };
}

Prints to stdout, with an appended newline. Analoguous to println!.

See the docs for print! for more details.

Examples

pintln!();
pintln!((2 * 2));