diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-07-20 08:55:37 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-07-20 08:55:37 +0200 |
commit | 01399cea3ff5d5d64c987d06c882a1c7c9cdd878 (patch) | |
tree | b0df201f3bec90a94e6d373b71448d97ea6fa5fc /libmprint/tests/test/driver.cxx | |
parent | d8c1605ced6e9445b8ef6fdf7ab5dde4021d454a (diff) |
Add modularized version
Diffstat (limited to 'libmprint/tests/test/driver.cxx')
-rw-r--r-- | libmprint/tests/test/driver.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libmprint/tests/test/driver.cxx b/libmprint/tests/test/driver.cxx new file mode 100644 index 0000000..32fa1ae --- /dev/null +++ b/libmprint/tests/test/driver.cxx @@ -0,0 +1,10 @@ +// file: tests/test/driver.cxx -*- C++ -*- + +import std.core; +import print; + +int +main () +{ + print::to_stdout ("Hello, World!"); +} |