You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
303 B
C++

// License: AGPLv3 or later. https://www.gnu.org/licenses/licenses.html
#include <iostream>
#include "auxiliary.h"
#include "cfc.h"
using namespace std;
int main (const int argc, const char* const argv[])
{
processArguments progArgs(argc, argv);
driver runProgram(progArgs);
return 0;
}