[][src]Macro altaway::dbg

macro_rules! dbg {
    ($($x:tt)*) => { ... };
}

In the debug mode, acts like std::dbg. In the release mode, does nothing.

Example

dbg!(x, y, z);