blob: 08b976e13d0842864f589191ec7a0b6cefa7dd62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// file : tests/driver.cxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
import std.core;
import std.io;
using namespace std;
int
main ()
{
cout << string ("Hello, World!") << endl;
}
|