1#[macro_export] 2macro_rules! debug { 3 ($string:tt $(, $expr:expr)*) => { 4 if cfg!(any(debug_assertions, feature="debug")) { 5 println!(concat!("\nwasmlite::", $string) $(, $expr)*) 6 } 7 }; 8}