@vaporeon_ did you know that std::endl not only adds a newline but also inexplicably calls a method on the underlying "output stream instance" representing the console output, meaning that writing std::cout << "Hello world" << std::endl
is less performant than writing std::cout << "Hello world" << "\n";
?
@aescling @vaporeon_ correct, ash #2