From 60b5be3c72aaa4df1936b62ed4704b3d5abd2247 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 19 Jun 2017 18:26:34 +0300 Subject: Move project into intermediate sub-directory --- hello0/hello.cxx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 hello0/hello.cxx (limited to 'hello0/hello.cxx') diff --git a/hello0/hello.cxx b/hello0/hello.cxx new file mode 100644 index 0000000..fad8a40 --- /dev/null +++ b/hello0/hello.cxx @@ -0,0 +1,14 @@ +#include + +using namespace std; + +int main (int argc, char* argv[]) +{ + if (argc != 2) + { + cerr << "usage: " << argv[0] << " " << endl; + return 1; + } + + cout << "Hello, " << argv[1] << "!" << endl; +} -- cgit v1.1