blob: 1a4c94dd158c9e647bafa2f2a06fe7ba6755af22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Program Example36;
{ This program demonstrates the StartOfTheDay function }
Uses SysUtils,DateUtils;
Const
Fmt = '"Start of the day : "dd mmmm yyyy hh:nn:ss';
Begin
Writeln(FormatDateTime(Fmt,StartOfTheDay(Today)));
End.
|