1 2 3 4 5 6 7 8 9 10 11
// file: format/format.cxx -*- C++ -*- #include <format/format> using namespace std; string format (const string& g, const string& n) { return g + ", " + n + '!'; }