int main(int argc, char *argv[]) { EllysRivers test; if(argc == 1) { test.run_test(-1); }else { std::string arg(argv[1]); if(arg[0] != '-') { test.run_test(arg[0] - '0'); }else { test.debug(); } } return 0; }
// BEGIN CUT HERE int main(){ EllysRivers test; test.run_test(-1); return 0; }