1#[macro_export] 2macro_rules! print_debug { 3 ($cond:expr, $msg:expr $(, $farg:expr)* ) => { 4 if $cond { 5 println!($msg,$( $farg ),*); 6 } 7 }; 8}