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

import std.core;
import format;   // volume
import hello;

int
main ()
{
  using namespace hello;

  say ("World");
  say ("World", format::volume::loud);
  say_formatted ("Hi, World!");
}