Re: [fpc-pascal] Initializing record variables

2006-11-10 Thread Marc Santhoff
Am Donnerstag, den 09.11.2006, 19:52 -0700 schrieb [EMAIL PROTECTED]: > > particle_t = record > > name: array [0..Pred(16)] of char; > > longi: integer; > > pressure: float; > > temperature: double; > > lati: integer; > > end; > > > >

Re: [fpc-pascal] Initializing record variables

2006-11-10 Thread Marc Santhoff
Am Freitag, den 10.11.2006, 11:08 +0100 schrieb Marco van de Voort: > > I have to translate a lot of assignements like this: > > > > particle_t = record > > name: array [0..Pred(16)] of char; > > longi: integer; > > pressure: float; > > temperature

Re: [fpc-pascal] Initializing record variables

2006-11-10 Thread Marco van de Voort
> I have to translate a lot of assignements like this: > > particle_t = record > name: array [0..Pred(16)] of char; > longi: integer; > pressure: float; > temperature: double; > lati: integer; > end; > > ibuf: array [

Re: [fpc-pascal] Initializing record variables

2006-11-09 Thread list
> particle_t = record > name: array [0..Pred(16)] of char; > longi: integer; > pressure: float; > temperature: double; > lati: integer; > end; > > ibuf: array [0..Pred(2)] of particle_t; > (* raw translation by automatic t

[fpc-pascal] Initializing record variables

2006-11-09 Thread Marc Santhoff
Hi, I have to translate a lot of assignements like this: particle_t = record name: array [0..Pred(16)] of char; longi: integer; pressure: float; temperature: double; lati: integer; end; ibuf: array [0..Pr