Which idiom can be used to concatenate the strings a, b, c?
let a = "a".to_string();
let b = "b".to_string();
let c = "c".to_string();
Which idiom can be used to concatenate the strings a, b, c?
let a = "a".to_string();
let b = "b".to_string();
let c = "c".to_string();