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