#![deny(missing_docs, warnings)]
#[macro_export]
macro_rules! debugln {
() => { debugln!("(DEBUG)") };
($fmt:expr) => {
if cfg!(ndebug) {
} else {
println!($fmt);
}
};
($fmt:expr, $($arg:tt)*) => {
if cfg!(ndebug) {
} else {
println!($fmt, $($arg)*);
}
};
}