Macro here::here[][src]

macro_rules! here {
    () => { ... };
    ($msg : literal) => { ... };
    ($msg : literal, $($args : expr), +) => { ... };
}
This is supported on crate feature std only.
Expand description

Prints the line number and filename to stdout. Additionally, it can accept a string literal and format arguments like the format! macro.