blob: 8eaab142ded2fa75b59cbddbd7081a079fe941d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
Program Example32;
{ This program demonstrates the StartOfTheWeek function }
Uses SysUtils,DateUtils;
Const
Fmt = '"First day of this week : "dd mmmm yyyy';
Begin
Writeln(FormatDateTime(Fmt,StartOfTheWeek(Today)));
End.
|