Closed elindgren closed 2 years ago
sure, you do this or I do it?
I have been mixing iostream and stdio a lot, which is bad. It is better to unify to use the C++ way.
I can do it :)
ok, you can make a PR. I will add you as developer for this repo.
@brucefan1983 Would it be possible to revert back to using
std::cout
for logging/prints instead ofprintf
? Capturing the output fromnep.cpp
becomes difficult if it is written withprintf
, as it does not write to the same output stream asstd::cout
.Here is an example of the difference between the two:
Old:
New: