2019-07-28 23:53:15 +03:00
|
|
|
// Copyright (c) Ivan Bondarev, Stanislav Mikhalkovich (for details please see \doc\copyright.txt)
|
2015-06-12 21:59:28 +03:00
|
|
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
2015-05-14 22:35:07 +03:00
|
|
|
begin
|
|
|
|
|
with System.Console do begin
|
|
|
|
|
if CursorLeft >= 0 then
|
|
|
|
|
WriteLine;
|
2015-12-28 14:25:15 +03:00
|
|
|
Write('Программа завершена, нажмите любую клавишу . . .');
|
2015-05-14 22:35:07 +03:00
|
|
|
Readkey(true);
|
|
|
|
|
end;
|
|
|
|
|
end.
|