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