Language:
Русский
English
{DoneWCrt.PAS}
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
{Sample code for the DoneWinCrt procedure.}
uses WinCrt;
begin
Writeln('This is the first CRT window.');
Writeln(' Please hit return.');
Readln;
DoneWinCRT;
Writeln('This is the second CRT window.');
end.