summaryrefslogtreecommitdiff
path: root/format/format.cxx
blob: 0566e78234c4a6442efe6f6baa4cf6e6031950ab (plain)
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 + '!';
}