adds python implementations

- more README
- fix some C++ code along the way
This commit is contained in:
Johann Dreo 2022-08-31 00:24:52 +02:00
commit 016852e281
7 changed files with 199 additions and 43 deletions

View file

@ -26,9 +26,9 @@ int main(int argc, char** argv)
ifs.close();
std::string data = strip(datas.str());
std::clog << "Received: <" << data << ">" << std::endl;
std::ofstream ofs(argv[2]);
std::clog << "Received: <" << data << ">" << std::endl;
ofs << data << std::endl;
ofs.close();