Macro oursh::debug[][src]

macro_rules! debug {
    ($e : expr) => { ... };
    ($format : expr, $($e : expr), *) => { ... };
}
Expand description

Print debug information to stderr.

Examples

use oursh::debug;

debug!(1 + 2);

let msg = "because.";
debug!("why!? {}", msg);