I have tried to run some beginners C++ programs with Plato (latest build). All tests ran successfully with Visual C++ Express 2010. However, when I run the programs employing Plato, I get always only one line of output. For instance
#include <iostream.h>
int main()
{
cout << 'Hello World!\\n';
cout << 'Hello World!\\n';
cout << 'Hello World!\\n';
cout << 'Hello World!\\n';
cout << 'Hello World!\\n';
return 0;
}
gives (only one Hello World!):
Hello World!
Press RETURN to close window ...
Can anybody help? Many thanks,
Klaus