3 type Vector
is array (Positive range <>) of Long_Float;
6 LF
: Long_Float := 0.0;
9 type Date_Vector
is array (Positive range <>) of Date
;
11 type Rec
(D
: Natural) is record
12 B1
: Boolean := False;
13 DL
: Date_Vector
(1 .. D
);
14 VL
: Vector
(1 .. D
) := (others => 0.0);
18 function F
return Rec
;