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

15 lines
294 B
ObjectPascal

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