DEBSOURCES
Skip Quicknav
sources / mk-configure / 0.37.0-2 / examples / cxxlib / cxxlib2 / hello_msg3.cxx
12345678910
#include <iostream> #include <string> std::string hello_msg3 () { std::string ret = "hello"; ret += " world"; ret += " 3!"; return ret; }