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

import std.core;
import std.io;
import format;

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;
}