#include using namespace std; const string usage = "usage: regex"; int main(int argc, char * argv []) { if(argc != 1) { cerr << usage << endl; return 1; } cout << "hello cruel world" << endl; return 0; }