This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
2023-06-20 21:52:24 +03:00

14 lines
344 B
ObjectPascal

uses GraphABC,System;
begin
Font.Size := 80;
var x0 := (Window.Width - TextWidth('00:00:00')) div 2;
var y0 := (Window.Height - TextHeight('00:00:00')) div 2;
while True do
begin
var t := DateTime.Now;
var s := string.Format('{0:d2}:{1:d2}:{2:d2}',t.Hour,t.Minute,t.Second);
TextOut(x0,y0,s);
Sleep(1000);
end;
end.