[][src]Macro artha::debugln

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

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

debugln!(var) is a shorthand for println("{:?}", var)

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