diff options
Diffstat (limited to 'test/suite/hello.cc')
-rw-r--r-- | test/suite/hello.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/suite/hello.cc b/test/suite/hello.cc new file mode 100644 index 0000000..06e3deb --- /dev/null +++ b/test/suite/hello.cc @@ -0,0 +1,6 @@ +#include <iostream> + +int main() +{ + std::cout << "Hello\n"; +} |