Help to deal with the problem in Delphi XE, which arose with the first program. Code:
program Helloworld; //название программы {$APPTYPE CONSOLE} //директива компилятору о создании консольного приложения begin writeln('Hello, world!'); //вывод сообщения Hello, world! end. //конец программы After compilation, the text box appears momentarily and disappears. What could be the problem and how to fix it?