Skip to main content

prints

Macro prints 

Source
macro_rules! prints {
    ($( $( $s:expr ),+ );* => $buf:expr) => { ... };
    ( $( $( $s:expr ),+ );* ) => { ... };
}
Expand description

Write newline-delimited strings directly to stdout without dynamic dispatch.

ยงNote

The ; delimiter inserts new-lines, while , does not. A trailing newline is always added.