2 Comments
Jul 3, 2022Liked by Taras Tsugrii

That's a nice reminder. Thanks. I always say that C++ hello world is one of the more complicated hello world programs to explain. std::cout is .. global object, << are overloaded and std::endl is ... a function that will \n + flush. Why? since << has an overload that takes a function!

I once heard that some companies will penalize developers if they #include <iostream>. Urban myth? perhaps! :)

Expand full comment