Best way to do string concatenation in 2019 (Status quo)

Another one for the list:

    let a = "abc";
    let b = "def";
    let c = "ghi";
    let x = [a, b, c].concat();
    println!("{:?}", x);

Which automatically does the capacity calculation that @kornel mentioned.

11 Likes