mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-07 14:30:46 +01: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. |