[fpc-pascal] Correct syntax for initialized constants/variables

Ewald ewald at yellowcouch.org
Thu Apr 27 21:22:41 CEST 2017


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



More information about the fpc-pascal mailing list