#include #include std::string hello_msg2 () { std::string ret = "hello"; ret += " world"; ret += " 2!"; return ret; }