aboutsummaryrefslogtreecommitdiff
path: root/tests/driver.cxx
blob: 61ab288b1fdaf659ff8c2e38a820947e837573d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// file      : tests/driver.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

import std.core;
import std.io;

using namespace std;

int
main ()
{
  cout << string ("Hello, World!") << endl;
}