Closed
Description
A lot of people come from other languages and expect "a" + "b"
to work, or x + y
where x
and y
are both String
s.
We should be suggesting "a".to_string() + "b"
in the first place, x + &y
in the second, and in both cases also recommend using format!()
instead.
Context: https://www.reddit.com/r/rust/comments/5nl3fk/rust_severely_disappoints_me/dccdi17/