summaryrefslogtreecommitdiff
path: root/hello.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'hello.cpp')
-rw-r--r--hello.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/hello.cpp b/hello.cpp
deleted file mode 100644
index fad8a40..0000000
--- a/hello.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <iostream>
-
-using namespace std;
-
-int main (int argc, char* argv[])
-{
- if (argc != 2)
- {
- cerr << "usage: " << argv[0] << " <name>" << endl;
- return 1;
- }
-
- cout << "Hello, " << argv[1] << "!" << endl;
-}