summaryrefslogtreecommitdiff
path: root/fpcdocs/datutex/ex14.pp
blob: e4a3aa76dc87e8c01530bbed30e1b4bd97d4834b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Program Example14;

{ This program demonstrates the DaysInYear function }

Uses SysUtils,DateUtils;

Var
  Y : Word;

Begin
  For Y:=1992 to 2010 do
    Writeln(Y,' has ',DaysInYear(EncodeDate(Y,1,1)),' days.');
End.