diff options
Diffstat (limited to 'tests/driver.cxx')
-rw-r--r-- | tests/driver.cxx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/driver.cxx b/tests/driver.cxx new file mode 100644 index 0000000..64a5fb1 --- /dev/null +++ b/tests/driver.cxx @@ -0,0 +1,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; +} |