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