mynewt
macro_rules! d { ($($token:tt)*) => { ... }; }
Macro to dump all tokens received as a literal string, e.g. d!(a b c) returns "a b c"
d!(a b c)
"a b c"