macro_rules! join_strings {
() => { ... };
($a:expr $(,)?) => { ... };
($a:expr, $b:expr $(,)?) => { ... };
($a:expr, $($rest:expr),+ $(,)?) => { ... };
}macro_rules! join_strings {
() => { ... };
($a:expr $(,)?) => { ... };
($a:expr, $b:expr $(,)?) => { ... };
($a:expr, $($rest:expr),+ $(,)?) => { ... };
}