mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 17:47:50 +02:00
14 lines
208 B
ObjectPascal
14 lines
208 B
ObjectPascal
uses SysUtils;
|
|
|
|
var
|
|
s : string;
|
|
begin
|
|
s:=formatdatetime ('hh:nn:ss.zzz', encodetime (12, 30, 44, 4));
|
|
writeln(s);
|
|
if s<>'12:30:44.004' then
|
|
begin
|
|
writeln('ERROR!');
|
|
halt(1);
|
|
end;
|
|
end.
|