diagnostics 0.1.0

Exports a set of diagnostic macros which can be useful for inspecting the value of various expressions in your code at runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[macro_export]
macro_rules! dump {
    ($exp: expr) => (
        println!("{} = {:?}", stringify!($exp), $exp);
    )
}


// #[cfg(test)]
// mod tests {

//     #[test]
//     fn it_works() {
//     }
// }