mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-27 23:48:52 +02:00
13 lines
223 B
ObjectPascal
13 lines
223 B
ObjectPascal
Program Example37;
|
|
|
|
{ This program demonstrates the EndOfTheDay function }
|
|
|
|
Uses SysUtils,DateUtils;
|
|
|
|
Const
|
|
Fmt = '"End of the day : "dd mmmm yyyy hh:nn:ss';
|
|
|
|
|
|
Begin
|
|
Writeln(FormatDateTime(Fmt,EndOfTheDay(Today)));
|
|
End. |