mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-26 12:18:20 +02:00
15 lines
294 B
ObjectPascal
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. |