14 lines
249 B
C++
14 lines
249 B
C++
#include <iostream>
|
|
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;
|
|
}
|