string_concat!
A useful macro for putting together strings in a low overhead manner for no_std + alloc apps.
let name = "Richard";
let msg:String = string_concat!;
saves you from typing
let name = "Richard";
let msg:String =
Contributors
- @richardanaya
- @RustyYato