Running SE 26.0.2.1 on macOS 11.6.5.
I have a buffer containing a single file C++project. The program simply outputs a string to stdout with no trailing \n or std::endl
#include <iostream>
int main(int argc, char **argv)
{
std::cout << "HELLO";
return 0;
}
On the previous version of SE the output would appear in the build window when executed. As there's no newline the prompt would appear after the output on the same line.
With SE 26.0.2.1 there is no output from the program shown in the build window.
If I add a \n or std::endl I get the expected output.