string_concat 0.0.0

A useful macro for concatenating strings in low overhead manner
Documentation

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_concat!("Hello ",name,"!");