diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-07-19 17:50:36 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-07-19 17:50:36 +0200 |
commit | a0f96b95900108705261881b164d779e2db5b824 (patch) | |
tree | 108e595a366ed83f6ae690f9f8980f76d71bd029 /tests/driver.cxx |
Initial implementation
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; +} |