Macro concat_all

Source
macro_rules! concat_all {
    ($val:literal,$($rest:literal),+) => { ... };
    ($single:literal) => { ... };
}