mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-27 11:49:41 +02:00
12 lines
227 B
ObjectPascal
12 lines
227 B
ObjectPascal
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. |