summaryrefslogtreecommitdiff
path: root/hello/hello.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-05-04 14:42:58 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-05-04 14:46:36 +0200
commite541a7f334971f913b1033d9e8f4f75f1de02703 (patch)
treec609304002b77001fd356b02e94b6c75a2d178f0 /hello/hello.cxx
parente9802dbaedcbde98232a46abac22349cb5909ca8 (diff)
Regenerate hello using bdep-new
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]);
-}