[][src]Macro artha::debug

macro_rules! debug {
    ($($x: expr),*) => { ... };
}

Removes the need for specifying the debug format string in print!.

debug!(var) is a shorthand for print("{:?}", var)

Note: the quotes around a string parameter is removed for readability