pascalabcnet/Utils/Pause/Pause.pas

10 lines
401 B
ObjectPascal
Raw Permalink Normal View History

// 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;
Write('Программа завершена, нажмите любую клавишу . . .');
2015-05-14 22:35:07 +03:00
Readkey(true);
end;
end.