I thought this would be really simple but it\'s presenting some difficulties. If I have
std::string name = \"John\"; int age = 21;
How do I
As a one liner: name += std::to_string(age);
name += std::to_string(age);