blob: ef06111281dda3e5919be79b392e71ad948ff71a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// file : tests/driver.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 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;
}
|