// file: hello.cxx -*- C++ -*- #include #include using namespace std; int main (int argc, char* argv[]) { if (argc < 2) { cerr << "usage: hello ..." << endl; return 1; } using hello::say; for (int i (1); i != argc; ++i) say (argv[i]); }