Playing with a comparison of python vs. c++ for something simple. stats.py reads lines on stdin and outputs some json, and goc.cpp reads stdin and outputs csv. I may just go with csv for the project but I'll see what json is like in C++ too.

This commit is contained in:
Zed A. Shaw 2024-05-04 00:08:47 -04:00
parent 6a777e4c2d
commit 567ffec4ac
7 changed files with 314 additions and 0 deletions

8
PPP3/ex08.cpp Normal file
View file

@ -0,0 +1,8 @@
#include <iostream>
using namespace std;
int main()
{
return 0;
}