summaryrefslogtreecommitdiff
path: root/libformat/tests/test/driver.cxx
blob: 1cf2959485bebe5c232ccfa9fa7276ad36b47588 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// file: tests/test/driver.cxx -*- C++ -*-

#include <iostream>

#include <libformat/format.hxx>

int
main ()
{
  using namespace std;
  using namespace format;

  cout << message ("Hello", "World", volume::quiet) << endl;
  cout << message ("Hello", "World", volume::normal) << endl;
  cout << message ("Hello", "World", volume::loud) << endl;
}