macro_rules! log {
($lit:literal) => { ... };
($expr:expr) => { ... };
($fmt:literal, $($arg:expr),*) => { ... };
(array: $expr:expr) => { ... };
($($t:tt)*) => { ... };
}macro_rules! log {
($lit:literal) => { ... };
($expr:expr) => { ... };
($fmt:literal, $($arg:expr),*) => { ... };
(array: $expr:expr) => { ... };
($($t:tt)*) => { ... };
}