runtime_diff/
lib.rs

1#[macro_export]
2macro_rules! breadcumb {
3    ($($arg:tt)*) => {
4        println!("BREADCUMB: {}", format_args!($($arg)*));
5    };
6}
7
8#[macro_export]
9macro_rules! runtime_check {
10    ($($arg:tt)*) => {
11        println!("RUNTIME CHECK: {}", format_args!($($arg)*));
12    };
13    () => {
14    };
15}