fpc/docs/datutex/ex46.pp
2004-12-30 01:06:27 +00:00

14 lines
235 B
ObjectPascal

Program Example46;
{ This program demonstrates the MilliSecondOfTheSecond function }
Uses SysUtils,DateUtils;
Var
N : TDateTime;
Begin
N:=Now;
Writeln('MilliSecond of the Second : ',
MilliSecondOfTheSecond(N));
End.