Files
old-oracle-parser/test.cpp

17 lines
230 B
C++
Raw Normal View History

2018-02-23 00:40:26 +01:00
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
string parseInput(string);
int main(int argc, char *argv[]) {
string ulaz = "example-input.txt";
cout << parseInput(ulaz) << endl;
return 0;
}