I'm trying to concatenate static strings and string literals to build another static string. The following is the best I could come up with, but it doesn't work:
const DESCRIPTION: &'static str = "my program";
const VERSION: &'static str = env!("CARGO_PKG_VERSION");
const VERSION_STRING: &'static str = concat!(DESCRIPTION, " v", VERSION);
Is there any way to do that in Rust or do I have to write the same literal over and over again?