commit | 3314730208e15eead58b9d9c7cfbe1161f02f704 | [log] [tgz] |
---|---|---|
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | Mon Apr 09 21:22:22 2018 +0200 |
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | Mon May 21 11:34:04 2018 +0200 |
tree | c04e0c39647aed72ced46a6f0c0a1b059b165cc0 | |
parent | 9b6ff7ca915c9e2d186d22ff034cde6ab9bdf0f9 [diff] [blame] |
Initial hello-world program. Change-Id: Iaf532290dcde6118eec31d3b5283908cc552335e
diff --git a/hello-world-ng.cpp b/hello-world-ng.cpp new file mode 100644 index 0000000..d6e2ec3 --- /dev/null +++ b/hello-world-ng.cpp
@@ -0,0 +1,7 @@ +#include <iostream> +#include <cstdlib> + +int main(int, char **) { + std::cout << "Hello world!" << std::endl; + return EXIT_SUCCESS; +}