On 27/04/17 20:49, Ralf Quint wrote:
> I try to include some initialized constants/variables in an application
> of mine, but somehow stumbled upon a stupid little problem that I can't
> figure out myself after nights on the computer.
> 
> I see in the reference docs (section 4.4) examples for arrays and
> examples for records, but in my case, I would need to properly define an
> array of records.

Something like this?

Type
        TA = Record
                a: Integer;
        End;

Var
        SomeArray: Array[0..1] of TA = (
                (a: 42;),
                (a: 17;)
        );

Note: this is written from memory, syntax might differ a little (but the
error messages from the compiler should help you out in that case).

-- 
Ewald
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Reply via email to